Copy link to clipboard
Copied
Hello 🙂
When you place all of the pages of a multipage PDF at the same time (holding option as you click the loaded graphics icon) the all appear overlapping one another, which is great, especially with a big 100pg+ doc.
However as the first page is placed first, the second is stacked on top of it, and so on, pg 100 will now be at the top of the stack.
Is there a quick way to reverse the order of these in Indesign?
Thanks for your help.
Hi thebobwolf,
for this special case only, select all frames that were placed one after another and run this ExtendScript (JavaScript) code:
var sel = app.selection;
for( var n=0; n<sel.length; n++ ){ sel[n].sendToBack() };
Regards,
Uwe Laubender
( ACP )
Copy link to clipboard
Copied
Hi thebobwolf,
for this special case only, select all frames that were placed one after another and run this ExtendScript (JavaScript) code:
var sel = app.selection;
for( var n=0; n<sel.length; n++ ){ sel[n].sendToBack() };
Regards,
Uwe Laubender
( ACP )
Copy link to clipboard
Copied
Amazing! Thanks so much Uwe, it works a treat. 🙂
Copy link to clipboard
Copied
I know you got this solved, but I'm curious why you'd stack 100 pages on top of one another. I'm going to assume it's for some kind of interactive document.
Copy link to clipboard
Copied
Hey Bob,
Yes, you're right, it's to create a MSO for an epub. (actually loads of them!) Re-ordering them first gives me the correct page number when I create the MSO.
Copy link to clipboard
Copied
Kinda what I figured. Without knowing exactly how this going to work, there could be ways to present this without reversing the order.
Copy link to clipboard
Copied
Hmmmm, so a script where you bring in your images, then run the script and it reverses the order and auto makes the MSO? perhaps even adding an empty hide frame at the end? (and possibly next and back buttons)
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Yeah, that Object State Assistant plugin is invaluable for making those! Thanks again for your help with that btw.
Copy link to clipboard
Copied
Uwe Thanks very much for this script. Will save me many hours over the long term!