回答

1

好的,下面是使用AppleScript做的一種方法。將以下內容粘貼到AppleScript編輯器中,並將其保存爲/ Applications/Adob​​e Illustrator/Presets/Scripts文件夾內的「在SVGA中查看Chrome.scpt」。

set tmpfile to "/tmp/ai-temp-" & ((random number) as string) & ".svg" 
tell application "Adobe Illustrator" 
    activate 
    save the current document 
    set openDoc to file path of current document as alias 
    export current document to tmpfile as SVG 
end tell 
tell application "Google Chrome" 
    activate 
    open location "file://" & tmpfile 
end tell 
tell application "Adobe Illustrator" 
    close current document 
    open openDoc 
end tell 

重新啓動Illustrator和腳本應該出現在文件»腳本菜單。

幾個注意事項:

  1. 這個工程使用Illustrator CS2,這是最新的版本我自己。在稍後的版本中,事情可能會有所變化,但應該可以讓這個腳本在沒有太多麻煩的情況下工作。我認爲腳本編寫在Adobe中是不重要的,所以如果沒有任何變化,我不會感到驚訝。

  2. 腳本保存當前文件,將圖像導出到Chrome,然後重新打開您正在處理的文件。由於Illustrator的AppleScript API不允許您將文件的副本保存在其他位置,因此無法避免。

  3. 我在這裏假設你要將文件導出爲SVG圖像,但其他格式也是可能的;只需將Flash,GIF,JPEG,Photoshop,PNG24PNG8中的一個替換爲SVG即可。

  4. 我沒有檢查錯誤,所以如果您在運行腳本時沒有任何當前打開的文件,可能會發生意想不到的情況。

相關問題