我的联想 Yoga 2 Pro 在触摸屏旁边有一个额外的 Windows Touch 按钮。
是否可以将该按钮重新映射到鼠标右键?
这对于许多未针对触摸进行优化且依赖于使用两个按钮的鼠标的游戏非常有用。
另外,我认为当将其用作鼠标右键时禁用触觉反馈会很好。
这对于 Windows 和 Linux 都很有用。
答案1
一个简单的解决方案就是使用 Autohotkey 将左 Win 键重新映射到鼠标右键。
手册说明了如何重新映射按键:http://www.autohotkey.com/docs/misc/Remap.htm
这是要使用的 ahk 脚本:
; This script replaces the Left Window key and the Window-key next to the Touchscreen on a Lenovo Yoga 2 Pro
; with the right-Mouse Button.
; This is extremely useful in many games to play only with the Touchscreen
LWin::RButton
我创建了一个GitHub 上的 AutoHotkey 可执行文件使用 AutoHotkey 内置的脚本 ahk2exe