Go to documentation repository
As an example of using JScript in Axxon PSIM, try to create a script containing an error and then correct it. The script performs the following actions: when Macro 1 starts, set the value 10 to the "Hot record" time parameter for cameras 1–4 and output the "Hello world" message to the debugging window of the Editor-Debugger utility.
To create and run this script, do the following:
In the Script field, enter the following:
if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN") { var ; for(i=1; i<=4; i=i+1) { SetObjectParam("CAM",i,"hot_rec_time","10"); } DebugLogString ("Hello world"); }
Attention!
The script contains an error. See below the recommendations on how to fix it.
The error message says that there is no identifier in the second line of variable declaration operator (var). This means that no variable has been declared. This is a critical error in JScript, thus the script has not been executed.
Correct the text of the script (see the “var i;” line).
if (Event.SourceType == "MACRO" && Event.SourceId && Event.Action == "RUN") { var i; for(i=1; i<=4; i=i+1) { SetObjectParam("CAM",i,"hot_rec_time","10"); } DebugLogString ("Hello world"); }
Check the accuracy of the script result. The "Hot record" time field in the Camera 1 to Camera 4 objects settings panels must have the 10 value.
Note
The "Hot record" time field in the settings panel of the Camera objects is blank by default.
By default, the new script is unavailable for all computers in the distributed system. To make it available, you must set the 0 value for the key ScriptSlavesDefaultNotSelected of the HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\AxxonSoft\AxxonPSIM registry (see Registry keys reference guide. For the information on working with the registry, see Working with Windows OS registry).
Script creation and debugging is now complete.