Development:Camino AppleScript Guide
Revision as of 00:15, 11 December 2007 by Sardisson (talk | contribs) (→Anomalies in the Camino AppleScript Dictionary: flesh out bookmark loss and make)
DRAFT
This page is not complete.
The following page is a guide to the AppleScript features available in Camino 1.6.
Camino 1.6 features significant improvements in AppleScript support over previous versions of Camino. Some of these improvements required incompatible changes to commands and properties. Many scripts will continue to work correctly in Camino 1.6; however, scripts that use certain commands and properties, and text scripts (.applescript), will need changes in order to continue functioning.
Contents
New in Camino 1.6
- Browser Windows and Tabs
- Browser windows can now be referenced specifically. Previously, Camino only exposed windows in general, including the Preferences window and the Downloads window in the same collection as browser windows.
- Browser windows contain tabs.
- Tabs can be addressed individually, exposing the title and URL of each page the user has open.
- Bookmarks
- Bookmarks and bookmark folders can be read, added, and modified by AppleScripts. (But see important point below. [Not added yet])
(pull from Development:Summer_of_Code_2007:AppleScript:Proposal?)
Anomalies in the Camino AppleScript Dictionary
- Moving bookmarks and bookmark folders
- While code likewill compile, it will produce undesired dataloss as a result.
tell application "Camino"
move bookmark "Test" of bookmark bar collection to ¬
bookmark folder "Test ƒ" of bookmark bar collection
end tell
To move a bookmark into a folder, use the following syntax instead:See Bug 394821 for more information.tell application "Camino"
move bookmark "Test" of bookmark bar collection to ¬
end of bookmark items of bookmark folder "Test ƒ" of bookmark bar collection
end tell
- While code like
- Making new tabs or browser windows
- Although the
make
command is present, it is currently not possible tomake new tab
ormake new browser window
. For technical information about the reasons for this, see this blog post. - If a user has “Links opened by other applications” checked (in the Tabs preference pane), it is possible to use
open location "about:blank"
to fake opening a new tab and then useset URL of current tab of front browser window
to load the desired URL.
- Although the
Migrating Scripts from Camino 1.5 to Camino 1.6
- The
open URL
andGet URL
commands have been replaced byopen location
. Compiled scripts should handle this change automatically in most cases. - The
window
class now properly refers to all open windows (including the Downloads and Preferences windows). To target a browser window, usebrowser window
instead.
Implementing Toolbar Script Items
- info
- info
- See Introducing Toolbar Scripts (Again) and Pimp Your Toolbar for more information.