AUTOHOTKEY/레퍼런스
Continue 루프의 현재의 회의 나머지의 처리를 스킵 해, 다음의 회에 진행된다.
님투
2007. 11. 5. 12:28
반응형
Continue
루프의 현재의 회의 나머지의 처리를 스킵 해, 다음의 회에 진행된다.
Continue
Remarks
제일 안쪽의 루프의 나머지의 처리를 스킵 해 다음의 회에 진행된다.
Related
Example(s)
; This example displays 5 MsgBoxes, one for each number between 6 and 10.
; Note that in the first 20 iterations of the Loop, the "continue" command
; causes the loop to start over before it reaches the MsgBox line.
Loop, 10
{
if A_Index <= 5
continue
MsgBox, %A_Index%
}
반응형