Published
- 1 min read
loop ahk
The solution for this is noted below
loop ahk
Solution
; Creates a loop with 3 iterations.
Loop, 3
{
MsgBox, Iteration number is %A_Index%. ; A_Index will be 1, 2, then 3
Sleep, 100
}
remember to not add more than 100 loops as that may freeze computer
Try other methods by searching on the site. That is if this doesn’t work