how do we prinit more than 999 copies from the print dialogue box

We want to print more than 999 copies to our network printers, but can't find where to change the quantity settings to allow this. Can anyone help?


Phil Earle


2 Answers

Voted Best Answer

It is indeed a limitation of the Print Dialog that the number of copies must be between 1 and 999. This is a limitation "by design", and as such may not be possible to circumvent.

However, what you can try is using a JavaScript print command, using the PrintParams (which allows to cover more or less all you need). There is the numCopies property of the PrintParams Object, and the documentation does not state any maximum value. In short, the printing command would look like this:

var pp = this.getPrintParams() ;
pp.numCopies = 1234 ;
this.print(pp) ;

For all the parameters in the PrintParams Object, refer to the Acrobat JavaScript documentation, which is part of the Acrobat SDK, downloadable from the Adobe website.

Hope this can help.

Max Wyss.


By Max Wyss   

This is a function of your printer, if your printer does not allow more than 999 copies, talk to the printer manufacturer and complain about this, or get a printer that does support it. You could also install custom print server software that accepts jobs to a virtual printer, which would then split up the job into multiple chunks with each having less than 999 copies. This would require custom software.

Karl Heinz Kremer
PDF Acrobatics Without a Net
PDF Software Development, Training and More...
http://www.khkonsulting.com


Karl Heinz Kremer   


Please specify a reason: