DTP駆け込み寺

[ 返信 ]

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


残り2件

  1. [15871] AIのAppleScriptで AM66 2013/08/09 10:31
    1. [15874] Re: AIのAppleScriptで 通りすがり 2013/08/09 13:57
      1. [15896] Re^2: AIのAppleScriptで AM66 2013/08/21 09:03
    2. [15877] Re: AIのAppleScriptで 小泉 2013/08/10 01:25
      1. [15903] Re^2: AIのAppleScriptで AM66 2013/08/23 10:43
    3. [15895] Re: AIのAppleScriptで . 2013/08/19 11:57