09-23-2008, 09:30 PM
Hi Marc. I pasted your script into Script Editor but it won't compile.
"Expected “,” but found end of line." (this, after the word "string" )
As an aside, the real shame of it is that the guy went through all this effort and didn't tag his files. Maybe it seemed like double the work to him. It would be cool if we could point him to a Windows solution so that he could fix what he's got at the outset.
"Expected “,” but found end of line." (this, after the word "string" )
--78 MP3 Nameizer--© 2008, Marc Anthony. All rights reserved.
set AppleScript's text item delimiters to_
tell applicationiTunesset theTarget to (choose from list playlists's name as list with prompt ¬
Locate&\&78 MP3's&\ &playlist.as string
repeat with X in playlist theTarget's tracks
set theText to X's name
try
set X's {name, artist, comment} to ¬
theText's {text item 1, text item 2, text item 3}
end try
end repeat
end tell
set AppleScript's text item delimiters to
As an aside, the real shame of it is that the guy went through all this effort and didn't tag his files. Maybe it seemed like double the work to him. It would be cool if we could point him to a Windows solution so that he could fix what he's got at the outset.