You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 3
Next »
As an example of using JScript in Axxon PSIM, try to create a script for the following tasks: when Macro 1 starts, set the value 10 to the Hot Recording parameter for Cameras № 1 – 4 and output the Hello world message to the debugger window of the Editor-Debugger utility.
To create and run this script, do the following:
- In the Hardware tab of the System Settings window, create four Camera objects with identification numbers 1, 2, 3 and 4, if they have not been created before.
- In the Programming tab, create a Macro object with identification number 1. The Events table should not be filled for .
- Create a Script object in the Programming tab. Enter the identification number 1 and the name Script 1.
- In the Script 1 object settings panel, select Always in the Time zone list.
- Click the Editor-Debugger button at the bottom of the Script 1 settings panel. The Editor-Debugger window will open.
- In the Editor-Debugger window, open the Script Debug/Edit list and select the Script 2 object.

Enter the following in the Script field:
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");
}
- In the File menu, select Save to database to save the script.
- Create a test event to run the script in debug mode – “MACRO|1|RUN|”. To achieve this, in the Debug and edit menu, select Edit test event; the Test message window will open. Fill in the fields in the Test message window as shown in figure.

- To run the script with the test event, select Test run in the Debug and edit menu.
- Open the Script Messages list and select Script 1. The debugger window will open at the right side.
- In the debugger window, find the “Process Event:MACRO|1|RUN|” line and the following error message: “Src identifier missing: Microsoft JScript compilation error Line:2 Char:6 Error:0 Scode:800a03f2”.

The error message says that there is no identifier in the second line of variable declaration operator (var). That means no variable has been declared. This is a critical error in JScript, thus the script has not been executed.
Change 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");
}
- In the File menu, select Save to database to save the script.
- Repeat steps 10 and 11.
- In the debugger window, find the “Process Event:MACRO|1|RUN|” line and the “DebugLogString:Hello world” and “Script first run OK” messages. The “Script first run OK” means that the script runs correctly in the debug mode.

- Close the Editor-Debugger utility.
- The text of the created script will be shown in the Script field of the Script 1 object settings panel. Click the Apply button in the Script 1 settings panel to activate the script.
- Select Macro 1 in the Run menu of the main control panel.
- In the debugger window of the Axxon PSIM system, check that the macro and the script have run successfully.

Check the accuracy of the script result. The Hot recording field in the Camera 1 to Camera 4 object settings panels should read “10”.

Script creation and debugging is now complete.