Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to automatically reverse page order in a PDF file with Adobe Acrobat

New Here ,
Jul 07, 2025 Jul 07, 2025

Hello,

I am using Adobe Acrobat DC for Mac and need to reverse the page order of a PDF file that contains over 300 pages. Currently, the first page is numbered 300 and the last page is numbered 1, but I want the first page to become number 1 and the last page to become number 300.

Given the high number of pages, I need an automatic solution to completely reverse the order, not a manual page-by-page rearrangement which would be too time-consuming and impractical.

Could you please indicate the correct procedure to perform this operation automatically with Adobe Acrobat? Is there a specific function to reverse the order of all pages simultaneously?

Thank you for your support.

TOPICS
How to , PDF
459
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
2 ACCEPTED SOLUTIONS
Community Expert ,
Jul 08, 2025 Jul 08, 2025

Run this script from the JS Console

(How to use the Console: https://acrobatusers.com/tutorials/javascript_console )

	var t = app.thermometer;
	t.duration = this.numPages;
	t.begin();
	for (i = this.numPages - 1; i >= 0; i--)
	{
		t.value = (i-this.numPages)*-1;
		this.movePage(i);
		t.text = 'Moving page ' + (i + 1);
	}
	t.end();

 


Acrobate du PDF, InDesigner et Photoshopographe

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 08, 2025 Jul 08, 2025
LATEST

You can do it with a single click using this free tool I've created:

https://www.try67.com/tool/acrobat-reverse-page-order-free

 

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jul 07, 2025 Jul 07, 2025

Hi there 

 

Hope you are doing well and thanks for reaching out. 

 

You're right, manually reordering over 300 pages would be impractical. While Acrobat doesn't have a direct "Reverse Pages" button, you can achieve this using JavaScript within Acrobat or through an Action Wizard (available in Acrobat Pro DC).

 

To batch change page numbers in Adobe Acrobat, you can utilize the "Action Wizard" (also known as batch processing) feature. This allows you to apply a series of actions, including adding or updating page numbers, to multiple PDF files at once.
When you apply one or more routine commands to your files, you can save time and keystrokes by using an action—a defined series of commands with specific settings and in a specific order that you apply in a single step. You can apply an action to a single document, several documents, or a collection of documents.

 

For more information, please check the help page https://adobe.ly/3IbmnS5 and see if that helps.

 

Hope this information will help.

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 08, 2025 Jul 08, 2025

Run this script from the JS Console

(How to use the Console: https://acrobatusers.com/tutorials/javascript_console )

	var t = app.thermometer;
	t.duration = this.numPages;
	t.begin();
	for (i = this.numPages - 1; i >= 0; i--)
	{
		t.value = (i-this.numPages)*-1;
		this.movePage(i);
		t.text = 'Moving page ' + (i + 1);
	}
	t.end();

 


Acrobate du PDF, InDesigner et Photoshopographe
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 08, 2025 Jul 08, 2025
LATEST

You can do it with a single click using this free tool I've created:

https://www.try67.com/tool/acrobat-reverse-page-order-free

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines