文字列挿入。下記のスクリプトではtext frame "A"というようにtext frameを名前で指定しているのがポイント。名前をつけるにはレイヤーパレットでオブジェクトをダブルクリックすれば名前をつけられる。
tell application "Adobe Illustrator" tell document 1 tell text frame "A" --1文字目を"あいうえお"にする set contents of character 1 to "あいうえお" --再終行を"かきくけこ"にする set contents of paragraph -1 to "かきくけこ" end tell end tell end tell
コメントする