I want to turn on 'arrow mode' after clicking alt (like i am turning capital letters mode after clicking caps lock).
I want to press alt once and then use letters all the time as arrows (like the alt is held) and then press alt again to leave 'arrow mode' and use normal letters. I am expecting that i would be able to press then alt+D (simultaneously) and not get arrow but program shortcut.
Right now i am using left letters as arrows:
; Arrows on s,d,f,e
!e::SendInput,{UP}
!s::SendInput,{LEFT}
!f::SendInput,{RIGHT}
!d::SendInput,{DOWN}
but i am not able to use alt+d (which is my program short cut)