フレームの移動

1.ドキュメントの座標値で移動 (配列で [横座標 , 縦座標] )
[JavaScript]


var frame = app.activeDocument.selection[0];
frame.move ([10,10]);
[VBScript]

Set app = CreateObject("InDesign.Application")
Set frame = app.activeDocument.selection(1)
frame.move Array(10,10)


2.現在の位置から移動 (配列で [横座標 , 縦座標] )
[JavaScript]


var frame = app.activeDocument.selection[0];
frame.move (null,[10,10]);
[VBScript]

Set app = CreateObject("InDesign.Application")
Set frame = app.activeDocument.selection(1)
frame.move "", Array(10,10)