Question
Reverse document order
You know when you've opened a number of images in Photoshop - but you realise they're in the wrong order and the one you want to look at first is right at the back.
// run a loop for all the open documents
for (var i = app.documents.length -1; i >=0; i--)
{
app.activeDocument = app.documents[i];
}
Just reverse the order!
You're welcome!
