Using Open As Dictionary… in Script Editor doesn’t work with Camino. Nor did the hint to remove a certain file from the Package.
Never mind. It’s possible to look at the file Camino.scriptSuite (it’s just a plist file), and work out what commands can be sent, and classes can be read:
Classes: only the one, URL, «class curl»
(Obviously all of the standard NSApplication classes still exist: especially name of window.)
Commands:
- DoJavaScript
- GetURL
- OpenURL
- RegisterEchoHandler
- UnregisterEchoHandler
I haven’t figured out how to use them all yet, or any of them for that matter. But someone else might use this info to figure our how to actually script Camino to do something useful…
tell application “Camino”
OpenURL “http://blogs.23.nu/c0re/”
end tell
the openurl stuff is quite broken, for example,
gopher urls are opened as local files (that are not found, obviously). and i still have not figured out how
to make a new window, shoud be something like
set newBrowserWindow to make new browser window properties {URL: “http://172.30.20.75/”}
though it does not work
1 month after the fact.