2012-01-17 46 views
0

我只需要一段代碼打開然後保存一個文件。這是一個插圖PDF與鏈接藝術品,問題是鏈接的文件不會更新,除非我打開然後保存文件,我不得不這樣做sooooo很多次,這使我的大腦爆炸。AppleScript簡單打開保存文件片段?

+0

我多一點精度會很好。也許寫出僞代碼可能會有所幫助 – 2012-01-18 01:15:52

回答

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命令(提示用戶以定位一個或多個文件)是獲得的文件的列表的只是一種方法。如果你想獲得一個特定的文件夾內的所有PDF文件,你也可以同樣使用

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"