It is possible to combine Advanced Scripts. Someone with an understanding of JavaScript should be able take parts from two or more existing scripts and combine them.
This article is intended to help people who are not JavaScript programmers combine two recipes so they run one after the other. It is not a replacement for understanding JavaScript.
A typical Advanced Script contains one printJobHook() function
function printJobHook(inputs, actions) { ... some JavaScript code ... } PaperCut calls printJobHook once per print job. If you wish to have two recipes called for a job then you must call them both from one printJobHook() function.
A simple way to do this is
Copy the first recipe into your script and rename its printJobHook to printJobHook1. Copy the second recipe into your script and rename its printJobHook to printJobHook2. Below the two renamed recipes (at the very end of the script text) add a printJobHook function that calls printJobHook1 then printJobHook2. It will look like this function printJobHook(inputs, actions) { printJobHook1(inputs, actions); printJobHook2(inputs, actions); } If both recipes work individually on your printer and it makes sense to call recipe 2 after recipe 1 then this combined script should do that for you.
Troubleshooting a Combined Script If your combined script does not work on your printer then
Check that recipe 1 alone works on your printer. You can do this by saving the combined script in a text editor and re-importing recipe 1. Check that recipe 2 alone works on your printer. You can do this by saving the combined script in a text editor and re-importing recipe 2. Confirm that it makes sense to call recipe 2 after recipe 1. If the combined script still does not work then there may be some JavaScript knowledge required. In this case you should discuss your script with someone who knows JavaScript.
Articles in this section
- How to remove a print job from the queue
- Upgrading the PaperCut Hive Ricoh Full Embedded App
- Share ARM64 Drivers from Windows Print Servers
- Printing from Microsoft Edge Browser and other Windows 10 and 11 Store Apps
- Top 10 best practices for implementing Print Quotas in education
- PaperCut Hive and SentinelOne
- Troubleshooting Mobility Print and Lightspeed
- Troubleshooting PaperCut Pocket & Hive Login
- Smooth MFD Upgrades: A Step-by-Step Guide
- PaperCut NG/MF Security Bulletin (December 2024)
Comments
0 comments
Please sign in to leave a comment.