我需要使用macOS Automator将自定义标签添加到从输入中获取的文件中。
我用它来选择标签-
set theTags to (choose from list {"Seattle", "B-roll", "Like"} with multiple selections allowed)
但是我很难编写一个函数,将这些标签添加到我输入的文件中。 重要的是我应该在现有标签上添加标签。
on run {input, parameters}
set file_list to input as list
set theTags to (choose from list {"Seattle", "B-roll", "Like"} with multiple selections allowed)
repeat with file_ref in file_list
if theTags is not false then (my addTags:theTags forFile:file_ref)
end repeat
return input
end run