AutoHotKey(오토핫키) 설명서 IfMsgBox

Posted by 발전소장
2014. 8. 14. 01:19 AutoHotKey/Commands

IfMsgBox

제일 최근의MsgBox커멘드로 지정한 버튼이 밀렸는지로 분기

IfMsgBox, ButtonName 

Parameters

인수명설명
ButtonName 조사하고 싶은 버튼명.Remarks참조.

Remarks

ButtonName에는 이하의 것을 지정한다

Yes
No
아니오
OK
OK
Cancel
캔슬
Abort
중지
Ignore
무시
Retry
재시행
Continue
속행
TryAgain
재시행
Timeout
타임 아웃 할 때까지 버튼이 밀리지 않았다

Related

MsgBox

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:
...