Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

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

Community Beginner ,
Nov 30, 2018 Nov 30, 2018

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.

TOPICS
Acrobat SDK and JavaScript , Windows
822
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Dec 01, 2018 Dec 01, 2018

You can use:

this.print({nStart: this.pageNum, nEnd: this.pageNum+1});
Translate
Community Expert ,
Dec 01, 2018 Dec 01, 2018

You can use:

this.print({nStart: this.pageNum, nEnd: this.pageNum+1});
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 01, 2018 Dec 01, 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});

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Dec 01, 2018 Dec 01, 2018
LATEST

Thanks, Bernd: worked like a charm!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines