chealion.ca : Home of Micheal Jones

polluting the internet since tomorrow

Tab Count to Growl for Safari

Posted on | June 17, 2008 | 1 Comment

The following AppleScript snippet figures out how many tabs are open in the frontmost window and spits it out to Growl. Helps when I don’t feel like counting how many tabs I’ve opened in WebKit/Safari. Note: To get this to work with Safari change WebKit to Safari.

tell application "WebKit"
    activate
    set numtabs to index of last tab of front window
    tell application "GrowlHelperApp"
        set the allNotificationsList to {"Number of Tabs"}
        set the enabledNotificationsList to {"Number of Tabs"}
        register as application "Growl AppleScript Sample" all notifications allNotificationsList default notifications enabledNotificationsList icon of application "WebKit"
 
        notify with name "Number of Tabs" title "Number of Tabs" description "" & numtabs application name "Growl AppleScript Sample"
    end tell
end tell

Comments

One Response to “Tab Count to Growl for Safari”

  1. GitHub : chealion.ca : Home of Micheal Jones : mcjones.ca
    September 18th, 2008 @ 6:36 pm

    […] present the only code snippets available are just the Locked DVD Applecript (Git) and the Tab Count to Growl AppleScript (Git). Several of my other scripts will be made available in the next couple of days. Share and […]

Leave a Reply