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