Go to documentation repository
| Tip |
|---|
Example. In the Event Viewer, activate Filter 1 for Event viewer 1 using Macro 1.
| Code Block | ||
|---|---|---|
| ||
if(Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN")
{
DoReactStr("EVENT_VIEWER","1","SET_FILTERS","filter0<Filter 1>");
} |
Example. In the Event Viewer, activate Filter 1, Filter 3, and Filter 5 for Event viewer 1 using Macro 4.
...