Return to Snippet

Revision: 17830
at September 15, 2009 01:23 by lildemon


Initial Code
tell application "iTunes"
	if current playlist exists then
		
		tell current playlist
			if song repeat = off then
				set song repeat to one
			else if song repeat = one then
				set song repeat to all
			else
				set song repeat to off
			end if
		end tell
		
	end if
	
	
end tell

Initial URL


Initial Description


Initial Title
Conditional code2

Initial Tags


Initial Language
AppleScript