Using 8.1.2, can I set up a field or text in the Table of Contents that when the user clicks on that chapter it will print out only those pages without having to print out "pages 6-12"?? Kinda like clicking on the TOC to jump to that section only to print the section instead.
var pp = this.getPrintParams();
pp.firstPage = 0;
pp.lastPage = 9;
this.print(pp);
This example prints pages 1-10. Note that the number is 0 based so the first page is 0.
Lori Kassuba is an AUC Expert and Community Manager for AcrobatUsers.com.