Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

After each button click on the control panel wait for 2 two seconds until clicking another button. If there is no button click, then the camera with dialed number must be displayed.

...

On Macro 1, display the text

"NNN

Titles"

(with line break) over the video image of camera 1 using captioner 1. On Macro 2, disable the display of this text.

Code Block
if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN")
{
    DoReactStr("MONITOR","1","SET_TITLES","titles<NNN \r Titles>,cam<1>,title_id<1>");
}
 
if (Event.SourceType == "MACRO" && Event.SourceId == "2" && Event.Action == "RUN")
{
DoReactStr("MONITOR","1","CLEAR_TITLES","cam<1>,title_id<1>");
}

...