Question
Javascript to add A4 page to end of odd numbered PDFs
Hi, I'm currently using..
if (this.numPages % 2) {
this.newPage();
}
..to add a blank to the end of odd numbered documents, this will add an 8.5"x11" page but I'd like to add an A4 insstead, is there a way to specify the page size added?
