如果我取消注释“视频类型”行,则不会将所有文件添加到库中,并且不会处理部分添加的文件(包括可移动和可收藏的标记)。
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
答案 0 :(得分: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选择并粘贴此类代码段。