java - Only want to print specific pages using livecycle designer ES3 -
i creating letter front end interface users complete. when clicking print button not want front end page print, second page onwards. there script or there way of making work? thanks
you can add following code click event of button. second argument says page start printing (it 0 based), third 1 says last page.
xfa.host.print(1, "1", (xfa.host.numpages -1).tostring(), 0, 0, 0, 0, 0);
Comments
Post a Comment