AutoHotKey(오토핫키) 설명서 IfMsgBox
IfMsgBox
제일 최근의MsgBox커멘드로 지정한 버튼이 밀렸는지로 분기
IfMsgBox, ButtonName
Parameters
인수명 | 설명 |
---|---|
ButtonName | 조사하고 싶은 버튼명.Remarks참조. |
Remarks
ButtonName에는 이하의 것을 지정한다
- Yes
- 네
- No
- 아니오
- OK
- OK
- Cancel
- 캔슬
- Abort
- 중지
- Ignore
- 무시
- Retry
- 재시행
- Continue
- 속행
- TryAgain
- 재시행
- Timeout
- 타임 아웃 할 때까지 버튼이 밀리지 않았다
Related
Example(s)
MsgBox, 4, , Would you like to continue?, 5 ; 5-second timeout. IfMsgBox, No Return ; User pressed the "No" button. IfMsgBox, Timeout Return ; i.e. Assume "No" if it timed out. ; Otherwise, continue: ...
'AutoHotKey > Commands' 카테고리의 다른 글
AutoHotKey(오토핫키) 설명서 IfWinExist / IfWinNotExist (0) | 2014.08.14 |
---|---|
AutoHotKey(오토핫키) 설명서 IfWinActive / IfWinNotActive (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 If var is [not] type (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 IfInString / IfNotInString (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 If var [not] in values / If var [not] contains values (0) | 2014.08.14 |