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


Click here to return to the 'Listen to multiple samples from the iTunes Music Store' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Listen to multiple samples from the iTunes Music Store
Authored by: mark hunte on Feb 23, '05 09:35:06AM
God I can not believe I did not think of that :) nice one. You are my hero. I have always wanted ti be able to do this. I change it a bit so you just have to select your first track ( not play ) and then run the script. Which will play selection and go on to next at 29 seconds. I have noticed though that sometimes the first time you connect to iTMS there is a 1 second delay so you only get 28 seconds. (trying to fix)
 on idle
	tell application "iTunes"
		if (the player state is not playing) then
			play
		else
			my P_next()
		end if
		
	end tell
end idle
on P_next()
	tell application "iTunes"
		next track
	end tell
end P_next
return 29.9

---
mh

[ Reply to This | # ]