<begloop> Begins loop.  The loop allows to repeat some part of macro many times.  Each <begllop> commands must be followed by <endloop>.


Command Tree:   Macro Flow Control    \  Loop  \  Begin Loop
.
Syntax:   <begloop>(Repeat)
Repeat
The number of repeats.  Can be one of these options:

Repeat > 0  -  The Repeat is the actual number of loops to be performed.
Repeat = 0  -  The user specifies the number of repeats in the runtime.
Repeat = -1  -  The user is asked each loop to continue or stop repeating.
.
.
Example:   <#> This macro shows how to use loops
<#>
<commands_only_on>

<varset>("vNum=","How many Notepads you want to open ?")
<begloop>(vNum)
  
<execappex>("notepad.exe","","",0,0)
<endloop>