Skip to content

Instantly share code, notes, and snippets.

@arkadyan
Last active December 19, 2015 04:19
Show Gist options
  • Save arkadyan/5896670 to your computer and use it in GitHub Desktop.
Save arkadyan/5896670 to your computer and use it in GitHub Desktop.
AppleScript to view the currently playing artist in iTunes on AllMusic.
tell application "iTunes"
if player state is not stopped then
set currentArtist to artist of current track
end if
end tell
tell application "Safari"
open location "http://www.allmusic.com/search/all/" & currentArtist
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment