Development:Camino AppleScript Guide
Jump to navigation
Jump to search
DRAFT
This page is not complete.
The following page is a guide to the AppleScript features available in Camino 1.6, Camino 2.0, and Camino 2.1.
Camino 1.6 introduced 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 and later; however, scripts that use certain commands and properties, and text scripts (.applescript), will need changes in order to continue functioning.
Contents
New in Camino 2.1
- Tabs
- The non-standard
title
property has been deprecated. Scripts should switch to the standardname
property (which works consistently forapplication
,window
,browser window
, andtab
). Thename
property is backwards-compatible with Camino 2.0, so scripts targeting both Camino 2.1 and 2.0 can still safely migrate from the deprecatedtitle
property.
- The non-standard
New in Camino 2.0
- Web page source and text
- It is now possible to fetch the HTML source and displayed text of a browser window or tab using the
source
andtext
commands. - If a web page has a selection, it is also possible to return the HTML source and displayed text of just the selection using the
selected source
andselected text
commands.
- It is now possible to fetch the HTML source and displayed text of a browser window or tab using the
- Tabs
- It is now possible to set the
current tab
property of each browser window in order to change the active tab in that browser window. - Tabs now support
name
as an alias for thetitle
property. It is our intention to deprecate the non-standardtitle
property in a future release.
- It is now possible to set the
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 the important note below.)
- WWW!OURL AppleEvent is deprecated
- The old Spyglass WWW!OURL AppleEvent and its corresponding
open url
command have been deprecated. Scripts using these will not work in Camino 1.6, though they will work again in Camino 1.6.1. See below for a migration path.
- (Beginning with Dreamweaver CS5, Adobe no longer uses the deprecated WWW!OURL AppleEvent; see Bug 549680 Comment 10. Other applications should also cease using WWW!OURL and switch to the standard GURLGURL AppleEvent.)
- The old Spyglass WWW!OURL AppleEvent and its corresponding
Implementing Toolbar Script Items
- See Introducing Toolbar Scripts (Again) and Pimp Your Toolbar for more information.
Anomalies in the Camino AppleScript Dictionary
- 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
- Certain items present in the Standard Suite will compile but are not implemented in Camino at this time (Bug 394581).
browser window 0
andtab 0
resolve to a browser window/tab (browser window/tab 1) but should not (Bug 395716).- If the user has enabled the “closing windows or quitting with multiple pages open” warnings, these alerts will also fire when AppleScripts attempt to perform these actions. There is currently no way for the script to disable these alerts on a case-by-case basis (Bug 391684).
- “Phantom” windows caused by tooltips (one phantom window per tab, so long as the tab is open) can show up in the count of windows (Bug 437802).
- Using UI Scripting to access Camino’s UI can cause toolbar scripts to take forever, time out, or hang Camino. If you need to use UI Scripting to access Camino UI, run your script from the Script menu instead of as a toolbar script (Bug 448992).
Migrating Scripts from Camino 1.5 to Camino 1.6
- The
Get URL
command has been replaced byopen location
. Compiled scripts should handle this change automatically in most cases. - The
open url
command (and its corresponding «event WWW!OURL») has been deprecated. Scripts should useopen location
instead. Any compiled scripts using this event will re-resolve toDeprecatedOpenURL
terminology when opened in ScriptEditor with Camino 1.6.1 and later, and those instances should be changed manually to useopen location
to ensure compatibility with future versions of Camino. (Scripts usingopen url
or «event WWW!OURL» will fail in Camino 1.6 but will work again in Camino 1.6.1.) - The
window
class now properly refers to all open windows (including the Downloads and Preferences windows). To target a browser window, usebrowser window
instead.