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


Click here to return to the 'Rate iTunes songs on a wider scale' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Rate iTunes songs on a wider scale
Authored by: duffster on Feb 01, '05 02:44:57PM
I'm no great AppleScripter, but here's what I came up with:

tell application "iTunes"
	set TrackRating to rating of current track as integer
	display dialog "Rating for this song:" default answer TrackRating
	set dialogInfo to result
	set NewRating to text returned of dialogInfo as integer
	set selectedButton to button returned of dialogInfo
	get selectedButton
	set rating of current track to NewRating
end tell
Everyone is encouraged to modify and improve upon this script. Please do, but post back!

[ Reply to This | # ]
Rate iTunes songs on a wider scale
Authored by: KingDoom on Feb 01, '05 05:02:15PM

Worked great for me, thanks!



[ Reply to This | # ]