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

Reader print limit of 999

New Here ,
Oct 04, 2018 Oct 04, 2018

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

Use Javascript for this.

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

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