Applescript简单打开保存文件片段?

时间:2012-01-17 11:45:58

标签: applescript

我只需要一个片段打开然后保存文件。这是一个插图PDF与链接的艺术品,问题是链接文件不更新,除非我打开然后保存文件,我不得不做这个sooooo很多次它让我的大脑爆炸。

1 个答案:

答案 0 :(得分:0)

应该是直截了当的。我在Mac OS X 10.6.8上的Illustrator CS3(13.0.2)中测试了以下片段。

set theFiles to choose file with prompt "Select the files" of type {"pdf"} with multiple selections allowed

tell application "Adobe Illustrator"
    repeat with theFile in theFiles
        open theFile without dialogs
        save current document in theFile as pdf
    end repeat
end tell

choose file命令(提示用户找到一个或多个文件)只是获取文件列表的一种方法。你也可以使用

tell app "Finder" to set theFiles to every document file of folder "Macintosh HD:Full:Path:To:Your:Folder" whose file type begins with "pdf"

如果您想获取特定文件夹中的所有PDF文件。