Autohotkey ctrl + 键 == 箭头
Autohotkey ctrl + Key == Arrow
我试图仅在 ctrl 关闭时使用 Autohotkey software 将箭头键重新映射到 JKIL。
^i::Up
^k::Down
^j::Left
^l::Right
问题是当按下 ctrl + Key 时它发送 ctrl + arrow 把一切都搞砸了。
我想要的是 (ctrl + Key == arrow) NOT (ctrl + Key == ctrl + arrow), 是这可能吗?
使用来自 http://ahkscript.org
的 AutoHotkey v1.1+
这个有效
^i::send {Up}
^k::send {Down}
^j::send {Left}
^l::send {Right}
希望对您有所帮助
我试图仅在 ctrl 关闭时使用 Autohotkey software 将箭头键重新映射到 JKIL。
^i::Up
^k::Down
^j::Left
^l::Right
问题是当按下 ctrl + Key 时它发送 ctrl + arrow 把一切都搞砸了。
我想要的是 (ctrl + Key == arrow) NOT (ctrl + Key == ctrl + arrow), 是这可能吗?
使用来自 http://ahkscript.org
的 AutoHotkey v1.1+这个有效
^i::send {Up}
^k::send {Down}
^j::send {Left}
^l::send {Right}
希望对您有所帮助