Hej! Kör mycket radio och dylikt på Spotify.
Jag vill inte höra några nNckelbacklåtar, så jag gjorde ett script som byter till nästa låt om Nickelback skulle börja spelas.
Ladda ner appen här:
http://www.4shared.com/file/r1WEs2wN...ipper_v11.html
Så här ser AppleScriptet ut
Kod:
on idle
tell application "Spotify"
set theTrack to current track
set theArtist to artist of theTrack
if player state is playing then
if theArtist is "Nickelback" then
-- comment
tell application "System Events"
set MyList to (name of every process)
end tell
if (MyList contains "Spotify") is true then
tell application "Spotify" to next track
end if
-- comment
end if
end if
end tell
return 1
end idle