一番最近のMsgBoxコマンドで指定したボタンが押されたかどうかで分岐
IfMsgBox, ButtonName
引数名 | 説明 |
---|---|
ButtonName | 調べたいボタン名。Remarks参照。 |
ButtonNameには以下のものを指定する
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: ...