Skip to content

Instantly share code, notes, and snippets.

@secretfader
Forked from toabi/iTunes2LadioCast.scpt
Created October 29, 2010 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save secretfader/653362 to your computer and use it in GitHub Desktop.
Save secretfader/653362 to your computer and use it in GitHub Desktop.
set lastName to ""
set lastArtist to ""
repeat
tell application "iTunes"
set trackName to name of current track
set trackArtist to artist of current track
end tell
if trackName is not lastName and trackArtist is not lastArtist then
set lastName to trackName
set lastArtist to trackArtist
tell application "LadioCast"
set metadata song to trackName & " - " & trackArtist
end tell
end if
delay 15
end repeat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment