2011年10月26日 星期三

[MAC] 將Word檔轉換成PDF

> > > > > > > > > >

利用Apple Script 製作應用程式
進行文件檔案轉檔成PDF


程式碼來源

(* Drag and drop batch conversion of Word docs to PDF files using Pages*)
on open filist
    repeat with lvar in filist
        tell application "Finder"
            set thename to name of lvar
        end tell
        set nuname to text 1 thru text item -5 of thename
        tell application "Pages"
            activate
            set filname to (path to desktop folder as text) & nuname & ".pdf"
            set x to make new document with properties {path:filname}
            open lvar
            save document 1 in file filname
            close every window saving no
        end tell
    end repeat
end open


利用MAC裡內建的Apple Script (使用Spotlight就可以搜尋到)
貼上程式碼後,選擇檔案>儲存為‧‧‧

打上檔名、位置
最重要的是檔案格式要更改成應用程式
"儲存為: "內的附檔名會更改為.app

將欲轉換的文件檔(如word,page..等)多項選取,拖拉進製作好的app
就會自動開始page程式,進行轉檔動作

但是轉換好的檔案會和製作的app放在一起
並不會自動存回和文件檔同資料夾

沒有留言:

張貼留言