我想要一个Applescript从文件刷新iTunes中的某首歌。要在iTunes中处理该文件,我只有该文件的路径。
我自己尝试使用“刷新”和“文件追踪”,但我是AppleScript的新手,所以我没有任何工作。
答案 0 :(得分:1)
我也是一个Applescript noob,但我自己想出来了! 很高兴知道您可以打开iTunes词典并浏览内容。 Applescript是一种奇怪的语言,但很多都可以从普通的英语中猜到。
我的解决方案存在问题:
我的代码:
tell application "iTunes"
set the_location to location of current track
repeat with this_track in selection
if (get location of this_track) is the_location then
refresh this_track
log "match"
end if
end repeat
end tell