This is long because after a month, I still am not close to a solution. Bet you can help!
For Acrobat 8 version 8.1.3 Professional or Acrobat 9 Professional, we're looking for a solution to populate the file name from form data in two form fields in our Print Request pdf: Document Name and Date Needed.
Employees in various departments of the college will submit their print job requests by clicking the Submit button to automatically go to our media dept to the Xerox 4110 printer.
The printer computer display shows our pdf file name. We need that file name to show what document needs to be printed and date needed, without requiring any additional action by the printer technician.
As I understand the Xerox 4110, the many school documents are in memory and can be electronically called to print without using any paper at all! Going green!
The script to send the document with the correct print settings without any user interaction is working.
In the submit button field, under Actions > Mouse up > Run a JavaScript >, the script I'm using is:
var pp = this.getPrintParams();
pp.interactive = pp.constants.interactionLevel.automatic;
pp.printerName = "EXP4110";
this.print(pp);
I am a support clerk for the Webmaster. One of my jobs is working with Acrobat finding good solutions to build interactive forms for the school. I recognize some elements of JavaScript but cannot write it.
I followed the recommendations in the forum and have spent many hours going through the JavaScript™ for Acrobat® API Reference version 8.1 and Acrobat JavaScript Scripting Reference 7.0.5. I've learned a lot but did not find how to make this work.
We do have LiveCycle Designer but our IT person said the solution I got from an Acrobat forum requires some scripting in the server - folder-level? and said that is not possible right now.
Thanks for any direction you can offer.
So are people using a PDF form to submit a request to a web server (or is it via email?) that then somehow communicates that a particular document needs to be printed?
Maybe if you summarized the steps from start to finish (initial request to document being printed) and clarify what data you need, it would be helpful.
George