DTP駆け込み寺

No.13220へ返信

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

[ 返信 ]

Re: Illustrator用JavaScriptで文字の

文字と文字以外のオブジェクトでは扱いが異なります。
以下のソースではいかがでしょうか。

for (i=0; i<activeDocument.pageItems.length; i++) {
if(activeDocument.pageItems[i].typename == "TextFrame") {
activeDocument.pageItems[i].textRange.overprintFill = false;
}
else {
activeDocument.pageItems[i].fillOverprint = false;
}
}

[13220] いき◆OTKUlNBtV0 (2011/11/25 Fri 12:12) web