Search window

Hello,

I try to launch the Search window using predefined directories (I often search in the same directories). Can I do it using Applescript and does anybody know how ?
Thanks in advance,

Christophe

The following two snippets open a new search window and search for the specified string using either a search set or a plugin:


tell application "DEVONagent"
	search "Search String" using set "Internet (Fast Scan)"
end tell


tell application "DEVONagent"
	search "Search String" using plugin "com.devon-technologies.google_web.plugin"
end tell