我有我想在我的Mac上運行刪除從我的所有歌曲的收視率在iTunes這個很基本的AppleScript:選擇iTunes中的所有曲目使用AppleScript
tell application "iTunes"
set sel to every track in library playlist
repeat with i from 1 to the count of sel
set rating of track i in sel to 0
end repeat
end tell
我從來沒有寫過什麼在AppleScript之前,但我認爲我會給它一個鏡頭(因爲它應該是非常直觀的)。不幸的是,當我嘗試運行腳本時收到此錯誤:
error "Can’t get every track of library playlist." number -1728
from every «class cTrk» of «class cLiP»
這是什麼錯誤?在iTunes中是否有另一種選擇曲目的方式?謝謝你的幫助。
感謝您的簡潔回答和解釋。非常感激! – squircle 2011-01-07 01:34:39