Answers for "loop ahk"

4

loop autohotkey

Loop, 4 {						;this loops 4 times
MsgBox, This is a messagebox	;shows a messagebox
}								;closes the loop
Posted by: Guest on April-05-2020
0

loop ahk

; 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
Posted by: Guest on October-11-2021

Browse Popular Code Answers by Language