Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好奇如何制作一个弹出窗口,询问我是否要在加载程序之前加载它。例子:
^g::Run C:\GW2\gw2.exe
虽然看起来你没有做很多功课,但我会在这里提供一个解决方案。
^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