我昨天得到了它的支持,今天它不再起作用了。我尝试使用Logitech G Hub的默认脚本,但未显示MOUSE_BUTTON_PRESSED Arg: 1
。它显示2-11很好,为什么会发生呢?
我尝试以管理员身份运行,但仍然无法正常运行。如何解决这个问题?
我的所有按钮都工作正常,只是G-Hub或LGS的Lua Script没有检测到左键单击输入。
function OnEvent(event, arg)
OutputLogMessage("Event: "..event.." Arg: "..arg.."\n");
end
输出:
(13:34:44) Script Loaded ()
Event: PROFILE_DEACTIVATED Arg: 0
Event: PROFILE_ACTIVATED Arg:0
Event: MOUSE_BUTTON_PRESSED Arg: 2
Event: MOUSE_BUTTON_RELEASED Arg: 2
Event: MOUSE_BUTTON_PRESSED Arg: 3
Event: MOUSE_BUTTON_RELEASED Arg: 3
Event: MOUSE_BUTTON_PRESSED Arg: 9
Event: MOUSE_BUTTON_RELEASED Arg: 9
Event: MOUSE_BUTTON_PRESSED Arg: 5
Event: MOUSE_BUTTON_RELEASED Arg: 5
您应明确启用对LMB事件的处理:
EnablePrimaryMouseButtonEvents(true)
function OnEvent(event, arg)
....
end