Autohotkey 脚本突然停止工作

Autohotkey 脚本突然停止工作

这个脚本之前还可以运行,但现在却不行了。

脚本的作用是,当我按下 USB 鼠标的中间按钮后,禁用鼠标垫和 USB 鼠标...但现在却不行。有什么问题吗?

mbutton::                    ;win + m hotkey
if (x != 1)
{
    BlockInput, MouseMove
    x := 1
    Hotkey, LButton, DoNothing
    Hotkey, RButton, DoNothing
    Hotkey, XButton1, DoNothing
    Hotkey, XButton2, DoNothing
    return
}
if (x = 1)
    reload

DoNothing:
return

F2::
Suspend
return

没有其他 AHK 脚本运行,只有这个。

相关内容