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"라고 간주합니다.
; 그렇지 않으면, 계속합니다:
; ...