DTP駆け込み寺

No.15877へ返信

記事投稿フォーム
補助
送信

[ 返信 ]

Re: AIのAppleScriptで

どのくらいの物に対して処理をかけているのかわかりませんが、
とりあえず、まとめられるところをまとめて、みました。

文字スタイルを使っていないと仮定して、全ドキュメントの全テキストにを一斉に変更しています。

tell application "Adobe Illustrator"
repeat with a4 from 1 to count documents
try
make new character style in document a4 with properties {name:"古都か", text font:text font "KozGoPro-Regular"}
end try
end repeat
tell documents
set properties of every layer to {visible:true, locked:false}
set locked of every page item to false
apply character style character style "古都か" to paragraphs of text frames with clearing overrides
end tell
close documents saving yes
end tell

[15877] 小泉 (2013/08/10 Sat 01:25) web