Skip to main content
alexandrav78579103
Participating Frequently
December 1, 2018
Answered

JavaScript for Print button so it will print "this page" and "next page"

  • December 1, 2018
  • 2 replies
  • 883 views

I want to start off by saying that I am not a JavaScript writer...

I know the code for printing page ranges, and even the code for printing this page only. But I can't seem to figure out what code to use so that once the button is selected, it will print current (this page) and next page together...?

Any help would be greatly appreciated.

This topic has been closed for replies.
Correct answer Bernd Alheit

You can use:

this.print({nStart: this.pageNum, nEnd: this.pageNum+1});

2 replies

alexandrav78579103
Participating Frequently
December 1, 2018

Thanks, Bernd: worked like a charm!

Bernd Alheit
Community Expert
Bernd AlheitCommunity ExpertCorrect answer
Community Expert
December 1, 2018

You can use:

this.print({nStart: this.pageNum, nEnd: this.pageNum+1});
try67
Community Expert
Community Expert
December 1, 2018

I would adjust it slightly, so it doesn't fail when used on the last page of the document:

if (this.pageNum==this.numPages-1) {

    this.print({nStart: this.pageNum});

} else this.print({nStart: this.pageNum, nEnd: this.pageNum+1});