如何在AutoHotKey中禁用全局重映射效果?

时间:2016-11-04 14:26:42

标签: autohotkey

我想让Shift键的行为类似PageDown,然后我写一个脚本

~Shift::
    KeyWait, Shift
    Send, {PgDn}

但是,当我想输入' A'时,我按下了键Shift,并触发了键aPageDown

当我想输入' A'如何禁用PageDown效果?

1 个答案:

答案 0 :(得分:1)

试试这个:

$Shift:: Send {PgDn}

$前缀强制键盘钩子用于实现此热键,作为副作用阻止发送命令触发它。

https://autohotkey.com/docs/Hotkeys.htm#Symbols