DTP駆け込み寺

[ 返信 ]

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


残り2件

  1. [13219] Illustrator用JavaScriptで文字のオーバー 森野クマ 2011/11/25 11:22
    1. [13220] Re: Illustrator用JavaScriptで文字の いき◆OTKUlNBtV0 2011/11/25 12:12
    2. [13221] Re: Illustrator用JavaScriptで文字の (z-) 2011/11/25 12:14
      1. [13222] ありがとうございました 森野クマ 2011/11/25 12:39