Hi..I need to change the properties of my printer through javascript. I am using Adobe Acrobat 8.0 proffesional. I need to find out that is there any way that i can set my simplex configured printer on a network to print duplex form. Please help
Hi..I need to change the properties of my printer through javascript. I am using Adobe Acrobat 8.0 proffesional. I need to find out that is there any way that i can set my simplex configured printer on a network to print duplex form. Please help
pp.pageHandling = pp.constants.handling.booklet;
pp.booklet.duplexMode = pp.constants.bookletDuplexModes.FrontSideOnly;
this.print(pp);
constants.bookletDuplexModes has three properties: BothSides, FrontSideOnly and BackSideOnly.
For printers that print only on one side, use FrontSideOnly first then reinsert the printed pages and print again with BacksideOnly to complete a manual duplex printing.
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.