Adobe Illustrator CC 2018(バージョン22.1)で、複数のアートボードを持つAdobe Illustrator書類をアートボードごとに分割保存するAppleScriptです。

オプションの指定方法にものすごく納得しづらいものを感じるものの、これで動くので仕方ないだろうかというところ。

| AppleScript名:複数のアートボードを持つAI書類を、デスクトップにアートボードごとに分割して保存.scptd | 
| use AppleScript version "2.4" — Yosemite (10.10) or later use framework "Foundation" use scripting additions set dtPath to ((path to desktop) as string) & "template.ai" tell application "Adobe Illustrator" tell front document set aCount to (count every artboard) as string set sOpt to {class:Illustrator save options, save multiple artboards:true, artboard range:"1-" & aCount} save as Illustrator in file dtPath with options sOpt end tell end tell  | 
More from my site
(Visited 220 times, 2 visits today)
              
            








