Cal


icon

30Boxes + Firefox + Address Book for Mac

August 29th, 2006 by Narendra

A little AppleScript and you can do quick Buddy lookups from your Mac Address Book. From Applications > AppleScript, open your Script Editor and paste in

property thirtyBoxes : “http://30boxes.com/search?email=”
using terms from application “Address Book”
on action property
return “email”
end action property

on action title for p with e
return “30 Boxes Buddy Page”
end action title

on should enable action for p with e
return true
end should enable action

on perform action for p with e
set params to “”
if value of e is not missing value then set params to value of e & ” ”
try
tell application “Firefox”
OpenURL thirtyBoxes & params
activate
end tell
on error
display dialog “You must have Firefox installed to use this plug-in.”
end try
end perform action

end using terms from

Save the file as “30 Boxes Buddy Page.scpt” and then open your Address Book. You should be able to CTRL (or Right) Click on a contact’s email address and then choose “30 Boxes Buddy Page” — it will open Firefox and presto, up to the minute information.

Tags: , , , ,

» View Blog Timeline
Share this post:These icons link to social bookmarking sites where readers can share and discover new web pages.  digg digg    del.icio.us del.icio.us  

One Response to “30Boxes + Firefox + Address Book for Mac”

  1. icon
    Arvid Warnecke Says:

    Hm. Does not work for me. I get an error about the ‘application “Adress Book”‘. It would be nice to have it somewhere as a regular download so that there are no copy&paste mistakes possible and to make sure that somebody already has compiled it once and that it is working.

    Cheers,
    Arvid

Leave a Reply


. .