1

如果我取消注释“视频类型”行,则并非所有文件都将添加到库中,并且部分添加的文件将不会被处理(包括可洗牌和可收藏的标志)。

on adding folder items to my_folder after receiving the_files
    repeat with i in the_files
        tell application "iTunes"
            set newAddition to add i
            tell newAddition
                (* set video kind to music video *)
                set shufflable to true
                set bookmarkable to false
            end tell
        end tell
    end repeat
end adding folder items to
4

1 回答 1

1

也许“设置视频类型”不适用于每种类型的媒体(轨道)。

无论如何,对所有 iTunes 代码进行防错是很好的,因此每当您在 iTunes 中更改某些内容时,添加一个“尝试/错误”例程,以便您可以根据需要做出反应。

这向您显示了一个不错的错误对话框:

 try
      set video kind to music video
 on error the error_message number the error_number
      display dialog "Error: " & the error_number & ". " & the error_message buttons {"OK"} default button 1
 end try

以这种方式尝试一次,当它失败时,您会收到错误号和消息。

希望有帮助。

顺便说一句:您可以在“Apple-Script Editor”中使用 CTRL-Click 选择并粘贴此类片段。

于 2012-08-30T06:24:02.563 回答