Choose your language

Choose your login

Contact us

Tips for print scripts

This page applies to:


  1. Use snippets and/or recipes where possible. They are tested and demonstrate best practice.

  2. Start out small and aim high. Don’t try building your script all in one go. Write a bit, test, then move on. Large scripts written in one go are hard to debug.

  3. Always test your scripts! Just because a script compiles does not mean it is bug free. Take time to test your script and exercise all logic paths. For example, if your script applies an action to jobs with more than 100 pages, test it by printing jobs that are both more and less than 100 pages.

  4. Check all your scripts from time to time for runtime errors and/or enable error level event notifications to receive an email when errors occur (see Error level event notifications ).

  5. Take some time to explore the list of methods in the reference API documentation (see Print script API reference ). Knowing what is possible can open up ideas.

  6. Use actions.log.debug() or actions.client.sendMessage() to assist with “print line” style debugging.

  7. If your scripts interact with end users, perform some usability testing to ensure they understand your messages and intentions.

  8. Consider using HTML markup to pretty up your dialog messages (see the snippet titled Show a dialog with HTML formatting).

  9. PaperCut MF 18.2.0 or above allows users to change the settings of held print jobs at the device. If you implement Advanced scripting (print scripting) that applies to these settings, then ensure to stop users from being able to change such settings at the device. For more information, see Changing attributes of print jobs at the device .

Comments