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


Click here to return to the 'Overcome iTunes' criteria for a skipped track' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Overcome iTunes' criteria for a skipped track
Authored by: DougAdams on Dec 22, '08 09:13:59AM
You could also set the track's skipped count and skipped date properties before doing the next track:

tell application "iTunes"
	if player state is not stopped then
		tell current track
			try
				set skipped count to (get skipped count + 1)
				set skipped date to (get current date)
			end try
		end tell
		next track
	end if
end tell

---
Doug's AppleScripts for iTunes
dougscripts.com

[ Reply to This | # ]

Overcome iTunes' criteria for a skipped track
Authored by: Black on Dec 22, '08 09:21:46AM

I haven't tried this, but wouldn't this double increment the skip count if you invoked it in the magic interval?



[ Reply to This | # ]
Overcome iTunes' criteria for a skipped track
Authored by: DougAdams on Dec 22, '08 09:26:44AM

Yes.

---
Doug's AppleScripts for iTunes
dougscripts.com



[ Reply to This | # ]
Overcome iTunes' criteria for a skipped track
Authored by: DougAdams on Dec 30, '08 11:54:27AM
I have posted an updated alternative here.

---
Doug's AppleScripts for iTunes
dougscripts.com

[ Reply to This | # ]