Created
May 17, 2012 21:52
-
-
Save jmah/2721789 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Menu Path: "Item" | |
tell front document of application "Delicious Library 2" | |
repeat with theItem in (get selected media) | |
if class of theItem is book and isbn of theItem is not missing value then | |
set theISBN to isbn of theItem | |
tell application "Safari" | |
activate | |
open location ("http://openlibrary.org/search?q=" & theISBN) | |
end tell | |
end if | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment