oolite/tools/play-oolite-inflight.applescript
2006-03-05 16:26:25 +00:00

13 lines
368 B
AppleScript
Executable File

tell application "iTunes"
if playlist "Oolite-Inflight" exists then
play playlist "Oolite-Inflight"
else
set newalias to location of some track of playlist 1
set newlist to make new playlist
set name of newlist to "Oolite-Inflight"
set song repeat of newlist to all
set shuffle of newlist to true
add newalias to newlist
play newlist
end if
end tell