Logitech k750 键盘上的 Autohotkey Fn 键重新映射
我用谷歌搜索,阅读论坛,但没有成功。 尝试过“Fn 键之谜” http://www.autohotkey.net/~ daonlyfreez/tutorials/3p/Veil/fnkey.htm 但卡在 AutoHotkeyRemoteControlDLL.ahk 上,它对所有设备(1-5 HID、6-9 键盘、10-16 鼠标)上的 Fn 键没有反应。
有什么建议吗?
I've googled, read forums but unsucceed in this.
Tried "Mystery of the Fn key" http://www.autohotkey.net/~daonlyfreez/tutorials/3p/Veil/fnkey.htm
But stucked at AutoHotkeyRemoteControlDLL.ahk, that doesn't react on my Fn key on all devices (1-5 HID, 6-9 Keyboard, 10-16 mouse).
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Fn 键的问题在于,许多键盘并未将其实现为普通键,而是将其实现为修改器,可以更改同时按下的其他键的键消息。
下面是 Windows 如何查看您的输入的示例场景:
按下 F1 - Windows 接收 F1 按下代码
按 F1 向上 - Windows 接收 F1 向上代码
按下 Fn - Windows 没有任何反应
按下 F1 - Windows 接收媒体 ▶ 按下代码
按 F1 向上键 - Windows 接收媒体 ▶ 向上代码
按 Fn 向上 - Windows 没有任何反应
The problem with the Fn key is, that a lot of keyboards don't implement it as normal key, but as a modifier that changes the key messages of other keys pressed at the same time.
So here is an example scenario of how Windows could see your input:
Press F1 down - Windows receives the F1 down code
Press F1 up - Windows receives the F1 up code
Press Fn down - Windows doesn't get anything
Press F1 down - Windows receives the media ▶ down code
Press F1 up - Windows receives the media ▶ up code
Press Fn up - Windows doesn't get anything