DevonAgent Pro URL-Scheme

Greetings,

I do not find an official description (or examples) of using the DevonAgent url-scheme in the User Manual, the forums, or by searching with Google.

So far I have found these two with virtually no explanation:

---------------------------------------------------------------
x-devonagent://runPlugin?identifier=com.devon-technologies.internet.plugin&query=SEARCH%20TERM

x-devonagent://runSearchSet?name=Marketing&query=Steve%20Jobs
---------------------------------------------------------------

Have I simply missed the documentation?

Are there more options than these?

This script automatically initiates the search:

---------------------------------------------------------------
set theQuery to "a brief history of time"
tell application "DEVONagent"
	activate
	get URL "x-devonagent://runPlugin?identifier=com.devon-technologies.internet.plugin&query=a%20brief%20history%20of%20time"
end tell
---------------------------------------------------------------

This script does not. It properly populates the search field of a new search window, but it does NOT change the search-set and stops without initiating the search.

---------------------------------------------------------------
set theQuery to "a brief history of time"
tell application "DEVONagent"
	activate
	set theURL to "x-devonagent://runSearchSet?name=web%20(fast)&query=a%20brief%20history%20of%20time"
	get URL theURL
end tell
---------------------------------------------------------------

Have I mangled the syntax somehow?

Thank you.


Best Regards,
Christopher Stone

The name of the search set is case-sensitive, so “web (fast)” is NOT equal to “Web (Fast)”.

Note that the parentheses can work as is but I would URLencode them as a matter of good form.
( = %28
) = %29

Hello Jim,

Great. That helps a lot.

Thank you.


Best Regards,
Chris