AutoHotKey(오토핫키) 설명서 Continue
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% }
'AutoHotKey > Commands' 카테고리의 다른 글
AutoHotKey(오토핫키) 설명서 ControlClick (0) | 2014.08.13 |
---|---|
AutoHotKey(오토핫키) 설명서 Control (0) | 2014.08.13 |
AutoHotKey(오토핫키) 설명서 ClipWait (0) | 2014.08.13 |
AutoHotKey(오토핫키) 설명서 Clipboard (0) | 2014.08.13 |
AutoHotKey(오토핫키) 설명서 Click (0) | 2014.08.13 |