Created
February 13, 2012 22:17
-
-
Save azizshamim/1820941 to your computer and use it in GitHub Desktop.
icloudit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#create a playlist with all the music not found | |
#select the playlist | |
tell application "iTunes" | |
set thePlaylist to current playlist | |
log (get name of thePlaylist) | |
repeat with i from 1 to (count tracks of thePlaylist) | |
set oldfi to fixed indexing | |
set fixed indexing to true | |
play track i of thePlaylist | |
delay 3 | |
delete track i of thePlaylist | |
set fixed indexing to oldfi | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment