Ask a Question related to Adobe Acrobat Windows, Design and Development.

  1. #1

    Default Reverse Page Order

    I have a 25 page pdf document that is in the wrong order. What is the best way to reverse this order? Thank you.
    Jacque_Grossman@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. sw parameters in reverse order
      We have several shockwave objects built into our learning management application. These objects use ini files to display user relevant learning...
    2. How can I - Reverse Page Order? Delete all odd pages?
      I have documents that need to be archived, unfortunately the laser printer makes then curl so I can't scan them as simplex through the ADF. I can get...
    3. php/mysql query insert values into enters the records in reverse order
      I'm loading tab delimited lines from a txt file using php and running a query for each line to enter the data into a mysql database. However the...
    4. Adobe Prints the Page in Reverse When Pages Are Rotated
      Our company is using Acrobat 5.0 and everything runs smoothly until we try to rotate pages and print them on our HP 2300 printer. After rotating the...
    5. Reverse Order?
      I read a text file into HTML for viewing through a webpage, fairly straight forward. Open (INFILE, "<filename.txt") || die "Error opening...
  3. #2

    Default Re: Reverse Page Order

    The quickest way would be to drag these pages around in the Pages pane.
    Dorian_Grey@adobeforums.com Guest

  4. #3

    Default Re: Reverse Page Order

    That's the only way I know how, but it's not a very quick or easy method. So, there's no other way to do this?
    Jacque_Grossman@adobeforums.com Guest

  5. #4

    Default Re: Reverse Page Order

    You could use pdftk to explode it into individual pages and then reorder it.

    I can't imagine any method that would be quicker or easier than re-arranding via the "Pages" pane, especially for such a small document.
    W_T_Allen@adobeforums.com Guest

  6. #5

    Default Re: Reverse Page Order

    Thanks, I wasn't aware of that program. But, yes I suppose you're right - manual drag and drop is the way to go here.
    Jacque_Grossman@adobeforums.com Guest

  7. #6

    Default Re: Reverse Page Order

    Here a Java Script that will arrange pages reverse. You may execute it via JS-Console.

    for (i=this.numPages-1;i>=0;i--)
    this.movePage(i);

    HTH, Reinhard
    Reinhard_Franke@adobeforums.com Guest

  8. #7

    Default Re: Reverse Page Order

    Reinhard script works, but there is an even easier method:

    Print the document using the distiller or PDF writer, and check the "reverse pages" checkbox in the print dialog box (right top). Problem solved...

    Rogier
    roog123@adobeforums.com Guest

  9. #8

    Default Re: Reverse Page Order

    I tried the Java Script and it's quite possible I did something wrong as I know nothing about this, but the Java Script editor box popped up with "syntax error": missing (before formal parameters 0: (null) at line 1. I had clicked on Advanced>JavaScript>Document JavaScripts and typed in exactly as Reinhard did.

    I sure liked Rogier's suggestion, and it did reverse the pages, but I had a few pages that were custom sized, and in doing this, it made them all uniform. Also, buttons are flattened to the artwork in the new file.
    Jacque_Grossman@adobeforums.com Guest

  10. #9

    Default Re: Reverse Page Order

    The quickest and cleanest way to reverse the page order is as follows:
    1. Open the PDF file to be amended
    2. Click on FILE...PRINT..
    3. Check the REVERSE PAGES Box
    4. Select Acrobat Distiller as the Printer
    5. Click OK and save as a new Filename
    6. Open the new file and the page order will have been reversed
    Deosaran@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139