This template describes the repeat parameter of the automacro eventMacros.
- repeat <number>
-
- repeat is an optional parameter.
- repeat defines how many times the macro defined by call will be called.
- If not used in the automacro the default value will be used, which is: 1.
- Must have a numeric value.
automacro <automacro name> {
<automacro conditions and parameters (and only them)>
repeat 3
call myMacro
}
macro myMacro {
<macro instructions (and only them, as this is regular macro)>
log This message will be printed 3 times, because the macro will be called 3 times
}