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


Click here to return to the 'Update 'Last Played Date' for skipped iTunes tracks' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Update 'Last Played Date' for skipped iTunes tracks
Authored by: hyfen on Mar 17, '08 12:23:54AM
To be a bit fancier, you can set the date to be updated only after you've listened to X percent of the track:

tell application "iTunes"
	if player position / (duration of current track) > 0.6 then
		set played date of current track to current date
	end if
	next track
end tell


[ Reply to This | # ]