Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我同时按下空格键和鼠标中键时,我希望我的脚本发送另一个按钮。但是,我也希望空格键在仅按下空格时正常工作(即它使空格正常)。
我已经尝试了下面的脚本并且“空格+鼠标中键”确实发送了 9,但是当仅按下空格时空格不起作用(它不会产生空格)。
SPACE & MButton:: Send 9
这两个句子一起做得很好:
Space & MButton::Send 9 Space::Send, {SPACE}
您可以使用热键修饰符保留键的功能~
~
当热键触发时,其键的本机功能不会被阻止(对系统隐藏)。
因此,为了保留空格键的功能,您的热键将是:
~Space & MButton::Send 9