Hi
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!!