This content has been marked as final.
Show 1 reply
-
1. Re: Bring All Text Boxes to Front
winterm Nov 11, 2014 8:36 AM (in response to Andymc7)Better use separate layer for text, I think.
You could check this
https://forums.adobe.com/message/1114148#1114148
or similar threads
Or use this piece of code (it's not mine, sorry, can't recall the author):
var TextLayer = app.activeDocument.layers.item("Text"); var tfs = app.activeDocument.spreads.everyItem().textFrames.everyItem().getElements(); while(tf = tfs.pop()){ tf.move(TextLayer); }It moves not grouped and not locked Text Frames to Text layer (must be created in advance).
Doesn't affects Master Pages.
Yet another option - try the free script Move to Layer of russian scripter Dmitriy Lapayev:

