りんごの備忘録

へなちょこポカ大生のへなちょこブログ

iTunesの再生回数をapplescriptでリセットするまで

iTunesの前のバージョンでは再生回数のリセットが出来たのですが,最新のでは出来なくっていました.Applescriptを使えば割と手軽にリセットを行うことができます.
これでいつでも再生回数を0にできますね!!!!

tell application "iTunes"
	set theTrack to selection
	if theTrack is not {} then
		repeat with i in theTrack
			try
				set played count of i to 0
			end try
			try
				set played date of i to missing value
			end try
		end repeat
	end if
end tell