複製する
tell application "Adobe Illustrator" tell document 1 duplicate text frame 1 to end --背面に複製 duplicate text frame 1 to beginning --前面に複製 duplicate path item 1 to end of layer 2 --レイヤー2の背面に複製 end tell end tell
移動する
tell application "Adobe Illustrator" tell document 1 move text frame 1 to end --背面に移動 move text frame 1 to beginning --前面に移動 move path item 1 to end of layer 2 --レイヤー2の背面に移動 end tell end tell
オブジェクトが存在するか
tell application "Adobe Illustrator" tell document 1 if exists path item 1 then delete path item 1 end if end tell end tell
コメントする