Skip to main content
Inspiring
December 9, 2016
Question

move pages with script acrobat

  • December 9, 2016
  • 1 reply
  • 2873 views

I have over 6000 pdf's of 10 pages each, I have to open those pdf one by one and move 1st page to last,  in pages is there any script for batch process which help me to do so for 6000 pdfs in 1 shot...

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
December 9, 2016

The script itself is simple:

this.movePage(0, this.numPages-1);

However, I don't think you'll be able to process that many files in a single process using an Action. From my experience, 500 files is the maximum you should attempt to do at a time, and even that depends on the strength of your machine and on the size of the files.

Participant
November 3, 2021

I've tried to figure out the reverse of this script and can't quite get it. I need to move the last page to the first in multiple files, any ideas how to flip this? Thank you!!