Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- tell application "iTunes"
- set sel to selection
- set is_ct to player position is not missing value
- if sel is {} and is_ct then
- set sel to current track as list
- end if
- repeat with aTrack in sel
- tell aTrack
- try
- set enabled to not (get enabled)
- end try
- end tell
- end repeat
- end tell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement