View Single Post
I'm trying to connect my Quix bookmarklet to a keyboard command (say, control-Q). My first try was applescript, using the following code:

Code:
tell application "OmniWeb"
	tell favorites
		set theaddress to address of bookmark "Quix"
	end tell
	
tell front browser
	OpenURL theaddress
end tell

end tell
This does not seem to work because the OpenURL command opens a new browser tab.

Any other suggestions?