AutoHotKey 某些组合键未被拦截(例如 3、4、5)
AutiHotKey Some key combinations are not intercepted (ex 3,4,5)
我想在以下模式下重新映射键盘:
2::ctrl
3::shift
4::alt
5::tab
我的问题是同时按 3,4,5(相当于按 alt shift tab)不起作用。
经过一番调查后,我发现 ahk 在同时按下时无法捕捉到某些键(2、3、e 或 3、4、5)。这是我的代码,通过它我发现了这个
2::
tooltip 2
sleep 500
tooltip
return
3::
tooltip 3
sleep 500
tooltip
return
4::
tooltip 4
sleep 500
tooltip
return
5::
tooltip 5
sleep 500
tooltip
return
e::
tooltip e
sleep 500
tooltip
return
有人知道捕获多个按键(例如 2,3,e 或 3,4,5)的解决方法吗?
谢谢!
这可能是您的键盘的局限性 - 某些键盘无法处理三个键的特定组合,这称为 "key jamming." 请参阅 Rollover (key) 中的 "Key jamming and ghosting" 部分维基百科上的页面。
我想在以下模式下重新映射键盘:
2::ctrl
3::shift
4::alt
5::tab
我的问题是同时按 3,4,5(相当于按 alt shift tab)不起作用。 经过一番调查后,我发现 ahk 在同时按下时无法捕捉到某些键(2、3、e 或 3、4、5)。这是我的代码,通过它我发现了这个
2::
tooltip 2
sleep 500
tooltip
return
3::
tooltip 3
sleep 500
tooltip
return
4::
tooltip 4
sleep 500
tooltip
return
5::
tooltip 5
sleep 500
tooltip
return
e::
tooltip e
sleep 500
tooltip
return
有人知道捕获多个按键(例如 2,3,e 或 3,4,5)的解决方法吗?
谢谢!
这可能是您的键盘的局限性 - 某些键盘无法处理三个键的特定组合,这称为 "key jamming." 请参阅 Rollover (key) 中的 "Key jamming and ghosting" 部分维基百科上的页面。