【问题标题】:Shift key autohotkeyShift键自动热键
【发布时间】:2016-06-16 20:15:35
【问题描述】:

我的主要问题是当我要求它只使用我分配的热键时,我的自动热键似乎正在使用我的 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。 我真的不明白,因为我是个新手,而且我已经有好几次都在尝试一切,所以我在这里寻求一些帮助。

提前感谢您阅读我,

卢卡斯

【问题讨论】:

  • 你想让你的脚本做什么?
  • 当我按下键盘上的“é”键时,我希望它就像我按下 3456 / "'(-

标签: autohotkey


【解决方案1】:

这样的?

~é:: ;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

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-11-16
    • 1970-01-01
    • 2013-03-20
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多