-
Use snippets and/or recipes where possible. They are tested and demonstrate best practice.
-
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.
-
Always test your scripts! Just because there are no errors when you click Apply does not mean it is bug free. Take time to test your script in all scenarios. For example, if your script applies a daily maximum number of color page copies, test it by trying to copy more than the maximum number in a day.
-
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 ).
-
Take some time to explore the list of methods in the reference API documentation (see Device script API reference ). Knowing what is possible can open up ideas.
-
Use
actions.log.debug()
to assist with debugging. This logs a message to the server’s text-based log file ([app-path]/server/logs/server.log
). -
If your scripts interact with end users, perform some usability testing to ensure your users understand your messages and intentions.
-
When working with JavaScript remember:
-
If you copy and paste an existing line or element, make sure you check the commas.
-
Check that all ( ) and { } and [ ] match as expected.
-
Check that all lines within { } end with a semi-colon.
-
For more information about JavaScript, see w3schools JavaScript Tutorial , JavaScript Function Definitions , or JavaScript.com.
-
0) ? window.innerWidth : screen.width;
if(width >= 1300){
largeDevice = true;
}
else{
largeDevice = false;
helpCentreNavOpen = false
}">
Tips for device scripting
1400" id="toc-container" class="page-manuals__toc" aria-label="Table of Contents">
Contents
Contents
Comments