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

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

Community Beginner ,
Nov 30, 2018 Nov 30, 2018

Copy link to clipboard

Copied

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

Views

640

Translate

Translate

Report

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});

Votes

Translate

Translate
Community Expert ,
Dec 01, 2018 Dec 01, 2018

Copy link to clipboard

Copied

You can use:

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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});

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

Thanks, Bernd: worked like a charm!

Votes

Translate

Translate

Report

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