[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
(DTPtechNote:794) Re: Illustrator CSのunicode text
>unicode-16なんだね、Illustrator CSってやつは。
ドキュメント名にかぎらず(まあ予想はしてたけど^^)
レイヤーなんかも全滅。
どうしよう。。。
なにか方法がありそうではあるけど、探すのがめんどい(笑)
set layer_name to "レイヤー 1"
tell application "Illustrator CS"
activate
set layer_name to layer_name as Unicode text
tell document 1
set old_layer to (name of current layer) as Unicode text
if exists layer layer_name then
set current layer to layer layer_name
else
make new layer at front with properties {name:layer_name} --新規レイヤー
end if
end tell
end tell