Go to documentation repository
Page History
...
The DIALOG object corresponds to the Operator query pane system object:
Operator format to describe actions with the operator query pane is:
...
panel system object:
List of commands and parameters for the the DIALOG object is presented in the following table:
Command |
—command description | Parameters | Description |
"SETUP" |
—set up |
the operator query |
panel | x<> | Coordinate of left top corner (0 |
–100) |
y<> | Coordinate of left top corner (0 |
–100) |
allow_move<> | 0 |
—forbid moving, 1 |
—allow moving |
"RUN" |
—show the operator query |
panel | - | - |
"RUN_MODAL" |
—run the operator query |
panel in modal mode |
- | - | |
"CLOSE" |
—close last opened operator query |
panel | - | - |
"CLOSE_ALL" |
—close all opened operator query |
-
-
Examples of using reactions of the Operator query pane object:
...
Using macro 1 set coordinates of left top corner of the operator query pane (ptz video camera PANASONIC-850) in center of screen, forbid its moving and display it.
| Code Block |
|---|
OnEvent("MACRO","1","RUN")
{
DoReact("DIALOG","PANASONIC-850","SETUP","x<50>,y<50>,allow_move<0>");
DoReact("DIALOG","PANASONIC-850","RUN");
} |
panels | - | - |
Close the operator query pane using macro 2.
...