[The Kershaw Family] Login | Web search | Home

Shuffle Toggle

Select a bunch of tracks in iTunes then run this Applescript to turn their shuffle attribute on or off (so they're skipped when using 'shuffle' on your iPod):

 tell application "iTunes"
	display dialog "Turn shuffling on or off for selected tracks?" buttons {"On", "Off", "Cancel"}
	set theButton to button returned of the result
	repeat with thisTrack in the selection
		set shufflable of thisTrack to (theButton is "On")
		log (name of thisTrack as text) & (shufflable of thisTrack) as text
	end repeat
 end tell


Updated: September 27, 2005    Related: Search for pages linking to 'Shuffle Toggle'

Contributed Comments
Shuffle Toggle
Add a comment to this page About Adding Comments
There are no user contributed comments for this page.