Answered
Add blank page after every page in acrobat
I need to add a blank page between every page in my file(s).
What is the JavaScript I use in the Action Wizard to accomplish this?
I need to add a blank page between every page in my file(s).
What is the JavaScript I use in the Action Wizard to accomplish this?
Hi,
So just wrap it in a loop, something like
for ( var i = this.numPages; i > 0; i--){
var Rect = this.getPageBox("Crop");
this.newPage(i, Rect[2], Rect[1]);
}
Although depending on the setup of your file you might need to change the How you get the page Size.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.