Lets start by checking those IMDb tags we've been putting in our comments.
Code:
tell application "iTunes"
-- set holdURL to make new document with properties {URL:"http://www.imdb.com/find?s=all&q=sucker+punch"}
set holdSelectedMovies to selection
if holdSelectedMovies is not {} then
set holdFrontOfSearch to "http://www.imdb.com/find?s=all&q="
repeat with holdTrack in holdSelectedMovies
set holdEndSearch to comment of holdTrack
if holdEndSearch is not "" then
set holdAllSearch to holdFrontOfSearch & holdEndSearch
tell application "Safari"
set holdURL to make new document with properties {URL:holdAllSearch}
end tell
end if
end repeat
end if
end tell
This gets the tag from the selected iTunes make a URL and open it in Safari.
Do we need instructions on how to make a
Scripts folder in
~/Library/iTunes. Copy this into
AppleScript Editor and save it into the
Scripts folder?