Quite Imposing: De-Imposing a booklet?

I re-read my scattered posts and did a poor job explaining it. It is more of a manual answer than automated too, but how often are you really doing this?

1. crop the printers spreads in from the left half way and save as the first half of the book.
2. crop second copy of book in from the right half way and print to a pdf file with the reverse page check box selected, creating the second half of the book, to a new file
3 combined the two pdf's for the complete book . works with any number of pages with software you probably have.
 
I don't even know where to begin how tedious that would be... unless you are volunteering. we have a few files in our archive LOL
1747851636986.png
 
I re-read my scattered posts and did a poor job explaining it. It is more of a manual answer than automated too, but how often are you really doing this?

1. crop the printers spreads in from the left half way and save as the first half of the book.
2. crop second copy of book in from the right half way and print to a pdf file with the reverse page check box selected, creating the second half of the book, to a new file
3 combined the two pdf's for the complete book . works with any number of pages with software you probably have.
That's exactly what I do and I do it in acrobat. I have a script that does step 3. Steps 1 and 2 are native to the acrobat program.
 
I've actually never used Javascript in Acrobat... and I've been using Acrobat Pro for decades at this point LOL

I have Javascript enabled now, and I've even tried restarting the application, but nothing happens when I paste it into the console and try to run it... nothing... not even a message. I'm checking with our senior systems admin to make sure they don't have any kind of script blocking... he says we have nothing enabled outside of browsers.
OK, could you try it again with the console? This time, after pasting the code, select all and press CTRL+Enter together?
It should run the script that way.
 
woops... that over writes the original file, good thing it was marked read only.

I'm still having issues with the script causing Acrobat to crash. Specifically when I have the script saved as an Action under the Action Wizard. If I comment out the "sd.closeDoc(true);", it stops crashing.
 
I'm not a programmer, but I'm good at deciphering a program/script when I can cross-reference the syntax. I might be able to work out how to get this to work.
It seems that the closeDoc() method isn’t supported in Actions.
Do you have a designated location where you want to save those edited files?
I do, I might just create a variable and concatenate a save-as string. using sd.url + "\" + sd.info.title + "_pages.pdf"
 
If you want to save it to the same location as the original file with the _pages suffix, try this:

nd.saveAs(sd.path.replace(“.pdf”, “_pages.pdf”));

Please note that I’m writing on a phone and it automatically adds typographers quotes instead of the normal ones. You might want to replace those.

Also document title might not be the same as document filename.
You can use documentFileName instead of info.title
 
If you want to save it to the same location as the original file with the _pages suffix, try this:

nd.saveAs(sd.path.replace(“.pdf”, “_pages.pdf”));

Please note that I’m writing on a phone and it automatically adds typographers quotes instead of the normal ones. You might want to replace those.

Also document title might not be the same as document filename.
You can use documentFileName instead of info.title
if we ever meet in person, I will buy you a beer 🍻
 
Hello,

Given the file that you shared to me, I think PitStop is also capable of processing this kind of files with some adjustments. For example:
- Split pages in half => will split spreads into series of 2 pages
- Reorder pages => define how pages must be re-shuffled.
 
   
Back
Top