Autohotkey ctrl + Key == Arrow

时间:2015-02-26 20:33:52

标签: autohotkey

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

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

问题是当按下 ctrl + Key 时,它会发送 ctrl + arrow 搞乱一切。

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

1 个答案:

答案 0 :(得分:1)

使用http://ahkscript.org

中的AutoHotkey v1.1 +

这有效

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

希望有所帮助