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

Reader print limit of 999

New Here ,
Oct 04, 2018 Oct 04, 2018

Copy link to clipboard

Copied

Is there anyway to circumvent the adobe reader print limit of 999? I've been using foxit reader, but that program moves the fields I paced on the pdf slightly.

TOPICS
Acrobat SDK and JavaScript

Views

639

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 04, 2018 Oct 04, 2018

Copy link to clipboard

Copied

Use Javascript for this.

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 04, 2018 Oct 04, 2018

Copy link to clipboard

Copied

LATEST

Not sure it will work, but you can specify the number of copies to any value you'd like when printing using a script, like this:

var pp = this.getPrintParams();

pp.NumCopies = 1000;

this.print(pp);

If the issue is the Print dialog then you can avoid it by using this code:

var pp = this.getPrintParams();

pp.NumCopies = 1000;

pp.interactive = pp.constants.interactionLevel.automatic;

this.print(pp);

However, executing this kind of code in Reader is tricky. You could do it using a folder-level script that adds a new menu item or toolbar button, for example, but that would require a more complex set-up.

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