Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Remove extra spaces from artists' names in iTunes' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Remove extra spaces from artists' names in iTunes
Authored by: ClarkGoble on Mar 31, '03 02:41:55PM

I just noticed a small typo at the top:

set songname to the name of (track i of library playlists)
set change_made to false as boolean

-- check leading spaces
if (length of artistname > 0) then

That should be

if (length of songname >0 ) then


The point of all that is to skip those tracks that don't have either a song name or artist name. Lacking song names isn't likely, so the bug probably won't affect anything.



[ Reply to This | # ]
Remove extra spaces from artists' names in iTunes
Authored by: DougAdams on Mar 31, '03 06:06:45PM

Script Editor would have fixed that before attempting to compile.





---



[ Reply to This | # ]