https://ahkplant.tistory.com/226
AutoHotKey(오토핫키) 설명서 Loop
→ AutoHotkey(을)를 유행시키는 페이지 → 레퍼런스 → Loop Loop 커멘드 혹은 블록을 지정 회수 혹은break등이 실행될 때까지 반복한다 Loop [, Count] Parameters 인수명 설명 Count 반복의 회수. 생략 했을 경
ahkplant.tistory.com
```
Loop, 3
{
MsgBox, Iteration number is %A_Index%. ; A_Index will be 1, 2, then 3
Sleep, 100
}
Loop
{
if A_index > 25
break ; Terminate the loop
if A_index < 20
continue ; Skip the below and start a new iteration
MsgBox, a_index = %a_index% ; This will display only the numbers 20 through 25
}
```
'tech' 카테고리의 다른 글
21/08/10 Unity 와 VSCODE 자동 완성이 안 될 경우 문제 해결 (0) | 2021.08.10 |
---|---|
21/08/08 암달의 법칙, 구스타프슨 법칙, 리틀의 법칙 (0) | 2021.08.08 |
21/08/06 Pulover's Macro Creator v5 Tutorial (0) | 2021.08.06 |
21/08/06 Export/Save All Open Images In GIMP (0) | 2021.08.06 |
21/08/06 Slicing Images Using GIMP - The Manual and Semi-Automatical Way (0) | 2021.08.06 |