DTP駆け込み寺

[ 返信 ]

Re: Indesignのテキストボックス幅を一括変更したい

アンカーということでテキストフレーム内のオブジェクトと考えて、こんな感じでしょうか?

objName = "スタイル";
objWidth = 50; //設定する幅
sel = app.activeDocument.textFrames;

for (i = 0; i < sel.length; i++) {
myObj = sel[i].allPageItems;
for (j = 0; j < myObj.length; j++) {
if (myObj[j].appliedObjectStyle.name == objName) {
myObj[j].visibleBounds = [myObj[j].visibleBounds[0], myObj[j].visibleBounds[1], myObj[j].visibleBounds[2], myObj[j].visibleBounds[1] + objWidth];
}
}
}

[18901] dot (2016/09/29 Thu 17:35)


残り1件

  1. [18900] Indesignのテキストボックス幅を一括変更したい まめ 2016/09/29 17:07
    1. [18901] Re: Indesignのテキストボックス幅を一括変更したい dot 2016/09/29 17:35
      1. [18902] Re^2: Indesignのテキストボックス幅を一括変更 まめ 2016/09/29 19:57