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


Click here to return to the 'Transfer iTunes' lyrics to older iPods via AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Transfer iTunes' lyrics to older iPods via AppleScript
Authored by: maddys_daddy on Oct 31, '05 08:30:26AM
Since I originally posted this script, I noticed one little annoyance in my original script--each file name has the artist's name in it (i.e. "Artist-TrackName"), which isn't really needed, since each note is stored in a folder named for the artist. So, if you don't want this extra little bit of overkill (and extra text on the small iPod screen) just change this line:
set file_name to (art & "-" & nom)
to this:
set file_name to nom
. Now, inside each artist folder, you'll just have the files named by track, instead of "Artist-TrackName."

[ Reply to This | # ]