Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the 'Easily add lyrics to iTunes songs via AppleScript' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
Easily add lyrics to iTunes songs via AppleScript
Authored by: kioarthurdane on Wed, Jul 16 2008 at 11:36AM PDT
My preferred method is to make sure the Harmonic widget from http://mindquirk.com/ is running, then use an AppleScript to step through all the songs.
Basic algorithm for the script goes (not tested for syntax, etc):

set timestep to 5 --adjust as needed depending on your internet speed.

play first track of playlist "Music"
pause

repeat from 1 to count of tracks of playlist "Music"
     next track
     delay timestep
end repeat


[ Reply to This | # ]
Easily add lyrics to iTunes songs via AppleScript
Authored by: blackxacto on Wed, Jul 16 2008 at 5:08PM PDT
I tried to compile this into a script, but it doesn't like the word "first".
I am no expert coding, but have compiled before.
What is the problem here, me or the code you provided?

jr

---
You'll never know which way to look, which way to see us.

[ Reply to This | # ]