0
votes

Im trying to remap the arrow keys to JKIL only when ctrl is down using the Autohotkey software.

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

The problem is when ctrl + Key is pressed it sends ctrl + arrow messing everything up.

What i want is (ctrl + Key == arrow) NOT (ctrl + Key == ctrl + arrow), is this possible?

1
Have you tried the updated version from ahkscript.org? It has a lot of bug fixes and added functionality!blackholyman

1 Answers

1
votes

Using AutoHotkey v1.1+ from http://ahkscript.org

This works

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

Hope it helps