【问题标题】:Autohotkey ctrl + Key == ArrowAutohotkey ctrl + Key == 箭头
【发布时间】:2015-04-29 09:45:35
【问题描述】:

我仅在 ctrl 使用 Autohotkey software 关闭时尝试将箭头键重新映射到 JKIL。

^i::Up
^k::Down
^j::Left
^l::Right

问题是当 ctrl + Key 被按下它发送 ctrl + arrow 搞砸一切。

我想要的是 (ctrl + Key == arrow) 不是 (ctrl + == ctrl + 箭头),这可能吗?

【问题讨论】:

  • 你试过ahkscript.org的更新版本吗?它修复了很多错误并增加了功能!

标签: autohotkey


【解决方案1】:

使用来自http://ahkscript.org的AutoHotkey v1.1+

这行得通

^i::send {Up}
^k::send {Down}
^j::send {Left}
^l::send {Right}

希望对你有帮助

【讨论】:

    猜你喜欢
    • 2011-06-14
    • 1970-01-01
    • 1970-01-01
    • 2018-12-15
    • 1970-01-01
    • 2011-05-04
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多