-4

好奇如何制作一个弹出窗口,询问我是否要在加载程序之前加载它。例子:

^g::Run C:\GW2\gw2.exe
4

1 回答 1

1

虽然看起来你没有做很多功课,但我会在这里提供一个解决方案。

^g::
MsgBox, 4100, , Would you like to launch GW2?, 5  ; 5-second timeout.
IfMsgBox, No
    Return  ; User pressed the "No" button.
IfMsgBox, Timeout
    Return ; Timed out.
run, C:\GW2\gw2.exe
Return
于 2012-11-04T08:01:59.937 回答