Applescript 打开文件夹中的所有 InDesign 文件

Applescript to open all InDesign files in a folder

我正在尝试制作一个脚本来打开文件夹中的所有 InDesign 文件并进行编辑。

目前正在尝试打开文件,这是我所拥有的:

tell application "Adobe InDesign CC 2015"
    open (every file of folder "test1" whose name ends with ".indd")
end tell

但我收到 snytax 错误:

 Expected “,” but found “"”.

InDesign 不理解 "every file of folder"。您使用的表达式是您对 Finder.

说的话

InDesign 完全不知道文件和文件夹是什么。

只有 Finder(和 System Events)知道文件系统

tell application "Finder" to set indesignFiles to (files of folder "test1" whose name extension is "indd") as alias list

tell application "Adobe InDesign CC 2015"
    open indesignFiles
end tell

请考虑 Finder 中的文件夹 test1 是桌面文件夹的子文件夹。