Skip to main content
Inspiring
August 20, 2025
Question

Reverse document order

  • August 20, 2025
  • 2 replies
  • 134 views

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!

 

 

2 replies

Inspiring
August 20, 2025

Useful if you ever want to look at PDF pages in Photoshop - which is how it came to mind.

 

Stephen Marsh
Community Expert
Community Expert
August 20, 2025

@Ghoul Fool – thank you for sharing, I would have expected that one had to close the open docs and re-open in reverse!