Is there a god to help make it happen

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
GLCat
Posts: 1
Joined: 03 Dec 2021, 03:26

Is there a god to help make it happen

Post by GLCat » 03 Dec 2021, 03:38

Press j and k alone to output normally
Hold j and ESDF maps to top left, bottom right, A to CTRL + left and G to CTRL + right
Hold k, esDF maps to Shift + up, left, down, right, A to CTRL + Shift + left, and G to CTRL + Shift + right

User avatar
mikeyww
Posts: 26862
Joined: 09 Sep 2014, 18:38

Re: Is there a god to help make it happen

Post by mikeyww » 03 Dec 2021, 06:43

Code: Select all

j::j
j & e::Send {Up}
j & s::Send {Left}
j & d::Send {Down}
j & f::Send {Right}
j & a::Send ^{Left}
j & g::Send ^{Right}
k::k
k & e::Send +{Up}
k & s::Send +{Left}
k & d::Send +{Down}
k & f::Send +{Right}
k & a::Send ^+{Left}
k & g::Send ^+{Right}

Post Reply

Return to “Ask for Help (v1)”