21 April 2008 @ 6:43Camino no longer accepts the Applescript ‘get URL’
I just noticed this today when one of my scripts was broken. Apparently from Camino 1.5 to 1.6 the open URL
and the get URL
commands were dropped and replaced by open location
. If you have any uncompiled Applescripts using the open URL
or the get URL
commands, you should make the change to open location
.
Note: compiled Applescripts that use either of the old commands should still work.
Update:
In my testing, the problem with using the old syntax only exhibits itself when using osascript
from the command line. Using “Get URL” in the Script Editor still seems to work.
The syntax on the command line should look like this:
osascript -e 'tell application "Camino"' -e 'open location "http://geek.thinkunique.org"' -e 'end tell'
by Jon | Add a comment | Tags: applescript, camino
Posted in applescript | Link to this