iTunes スキップ回数のリセット

私は iTunesで Ratingが 4か 5のものだけ iPhoneに転送して聴くようにしています。でも後で iTunesで確認すると、好きな曲のはずなのに無意識的によくスキップしてるものが出てきます。そんなときは Ratingをワンランク下げるような運用をしてるんですが(気が向いたときだけです)、スキップ回数だけをリセット出来ないため、どれを下げるべきなのか下げなくていいのか判断に困っていました。

そこで、AppleScriptで、選択した曲のスキップ回数をリセットさせるコードを書いてみました(OS X用)。~/Library/iTunes/Scriptsに置けばいいです。

tell application "iTunes"
  try
    set s to a reference to selection
    if s as list is {} then return
    set skipped count of s to 0
  end try
end tell

あまりここまで気にする人もいないかと思いますが、よかったらどうぞ!

Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>