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

Code for printing specific page

Community Beginner ,
Oct 08, 2020 Oct 08, 2020

Copy link to clipboard

Copied

Hello,

I am looking for a javascript code that can send a specific page to the printer.
The people who will use it all have acrobat reader DC

 

I have foud the code below but is doesn't work for printing the first page.

 

var pp = this.getPrintParams();

pp.printRange = [1];

this.print(pp);

TOPICS
Acrobat SDK and JavaScript

Views

380

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 , Oct 08, 2020 Oct 08, 2020

Use this:

 

var pp = this.getPrintParams();
pp.printRange = [[0,0]];
this.print(pp);

Votes

Translate

Translate
Community Expert ,
Oct 08, 2020 Oct 08, 2020

Copy link to clipboard

Copied

Info: the number of the first page is 0.

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 ,
Oct 08, 2020 Oct 08, 2020

Copy link to clipboard

Copied

Use this:

 

var pp = this.getPrintParams();
pp.printRange = [[0,0]];
this.print(pp);

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 ,
Oct 15, 2020 Oct 15, 2020

Copy link to clipboard

Copied

LATEST

Thank you very much.

It works !

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