AppleScript用于在文件系统路径上刷新iTunes轨道

时间:2010-01-22 08:56:25

标签: applescript itunes

我想要一个Applescript从文件刷新iTunes中的某首歌。要在iTunes中处理该文件,我只有该文件的路径。

我自己尝试使用“刷新”和“文件追踪”,但我是AppleScript的新手,所以我没有任何工作。

1 个答案:

答案 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