Hi all,
is there any possibillity to select pages to be printed?
For example,
"-5" print all pages up to 5 (included)
"4" just print page 4
"2-5" print pages 2,3,4,5.
"-2, 4-6" print pages 1,2,4,5,6
This is possible with smartforms using parameter TDPAGESLCT. But I couldn't find this parameter for Adobe Forms.
Has anybody a solution for that or am I only be able to print the whole form?
The user has to be able to select the pages to be printed (like number of copies.).
Thanks
Request clarification before answering.
Hi,
Try to use the firstPage and lastPage properties in javascript:
var pp = this.getPrintParams();
pp.firstPage = 0;
pp.lastPage = 9;
this.print(pp);
Based on above code, you can develop some workaround for achieving your requirement.
Hope this helps.
Thanks,
Radhika
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.