I am trying to map the following key combinations on my keyboard using AutoHotkey -
Alt i -> Up Arrow Alt j -> Left Arrow Alt k -> Right Arrow Alt m -> Down Arrow
I added the following code to my AutoHotkey.ahk file -
!i::Up
!j::Down
!m::Left
!k::Right
but it doesn't produce the desired results. Please help!!
Technically, AutoHotKey is a scripting language and interpreter that enables you to automate actions within Windows and installed actions. In practice, many people use AutoHotKey for tasks such as text expansion, mapping keys and mouse clicks to shortcuts or other actions, and launching programs.
Advanced Buttons 4th mouse button. Typically performs the same function as Browser_Back. 5th mouse button. Typically performs the same function as Browser_Forward.
!i::SendInput,{UP}
!j::SendInput,{LEFT}
!k::SendInput,{RIGHT}
!m::SendInput,{DOWN}
Jay's answer works, but
!i::Send {Up}
Return
!k::Send {Down}
Return
!l::Send {Right}
Return
!j::Send {Left}
Return
is a much faster solution.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With