IfMsgBox

가장 최근에 MsgBox 명령어가 작동 중인 동안 어느 버튼을 사용자가 눌렀는지 점검합니다.

IfMsgBox, ButtonName

매개변수

ButtonName

사용자가 누른 버튼은 다음 문자열 중 하나입니다:

MsgBox

예제

Shows a yes-no message box which automatically stops execution after 5 seconds. The user can press the "No" button to initiate the stop immediately.

MsgBox, 4, , 계속하시겠습니다?, 5  ; 5-초로 시간 제한.
IfMsgBox, No
    Return  ; 사용자가 "No" 버튼을 눌렀습니다.
IfMsgBox, Timeout
    Return ; 즉, 생략하면 "No"라고 간주합니다.
; 그렇지 않으면, 계속합니다:
; ...