AUTOHOTKEY/레퍼런스
IfMsgBox 제일 최근의MsgBox커멘드로 지정한 버튼이 밀렸는지로 분기
님투
2007. 11. 5. 14:38
반응형
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: ...
반응형