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
| Contributed Comments Shuffle Toggle |
|
| There are no user contributed comments for this page. | |