如何防止 Windows 在按住 alt 键时激活按键提示?
How to prevent Windows from activating keytips when alt-key is held down?
亲自尝试一下:
在文件资源管理器中,当您按住 alt 键时,功能区上会出现按键提示。
我想阻止这种行为。简而言之,我想禁用按住 alt 键的行为,但保持启用 alt+anyOtherKey 快捷方式。
在 AutoHotkey 中我尝试了代码:
Alt::return
它禁用 alt 键单击但不禁用 alt 键按住行为。有什么想法吗?
尝试
~LAlt::vk07
或
~LAlt::
~RAlt::
Send {Blind}{vk07}
return
https://autohotkey.com/docs/commands/_MenuMaskKey.htm#Remarks
亲自尝试一下:
在文件资源管理器中,当您按住 alt 键时,功能区上会出现按键提示。
我想阻止这种行为。简而言之,我想禁用按住 alt 键的行为,但保持启用 alt+anyOtherKey 快捷方式。
在 AutoHotkey 中我尝试了代码:
Alt::return
它禁用 alt 键单击但不禁用 alt 键按住行为。有什么想法吗?
尝试
~LAlt::vk07
或
~LAlt::
~RAlt::
Send {Blind}{vk07}
return
https://autohotkey.com/docs/commands/_MenuMaskKey.htm#Remarks