Copy link to clipboard
Copied
Copy link to clipboard
Copied
//DESCRIPTION: move all text frames in document 12 units downTo move by some other amount, change the values (that's x and y in the units you're using) in the moveTextFrames call.
( function() {
if (app.documents.length > 0) {
moveTextFrames(app.documents[0], [0,12]);
}
function moveTextFrames(doc, offset) {
var spreads = doc.spreads.everyItem().getElements();
for (var j = spreads.length - 1; j >= 0; j--) {
spreads.textFrames.everyItem().move(undefined, offset);
}
}
}())
Copy link to clipboard
Copied
Copy link to clipboard
Copied