Go to documentation repository
...
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");
} |
Close the operator query pane using macro 2.
| Code Block |
|---|
OnEvent("MACRO","2","RUN")
{
DoReact("DIALOG","PANASONIC-850","CLOSE");
} |