Versions Compared

Key

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

EVENT_VIEWER Event Viewer

Activating one filter

Example. In the Event Viewer, activate Filter 1 for Event viewer 1 using Macro 1.

Code Block
languagejs
if(Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN") 
{
DoReactStr("EVENT_VIEWER","1","SET_FILTERS","filter0<Filter 1>");
}

Activating multiple filters

Example. In the Event Viewer, activate Filter 1, Filter 3, and Filter 5 for Event viewer 1 using Macro 4.

...