Shift键自动键

时间:2014-09-26 01:17:41

标签: autohotkey

我的主要问题是当我要求它仅使用我指定的热键时,我的自动键似乎正在使用我的 Shift 键。

为了快点,我正在玩一个需要按住 Shift 的游戏,并且使用我放的脚本,似乎按下我的é键触发了我的 Shift 密钥为0.5秒顶部。

这是我的剧本:

SendMode Input
{
~é::
~+é::
Send {3 down}{4 down}{5 down}{6 down}{3 up}{4 up}{5 up}{6 up}
return
}

顺便说一句,即使我删除了行~+é::,,它也会像在游戏中按 Shift 一样做出反应。 我真的不明白,因为我有点新意,有时我尝试了一切,所以我在这里要求一些帮助。

提前感谢您阅读,

的Lukas

1 个答案:

答案 0 :(得分:0)

这样的东西?

~é:: ;because of the ~ the key will send itself and thus output: é3456
    SendInput, 3456
Return

或者也许:

é:: ;without the ~ the key doesn't send itself anymore and thus output: "'(-
    SendInput, "'(-
Return