AutoHotKey Display

I am trying to display the following keyboard shortcuts 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 he does not give the desired results. Please, help!

+6
autohotkey
source share
3 answers
 !i::SendInput,{UP} !j::SendInput,{LEFT} !k::SendInput,{RIGHT} !m::SendInput,{DOWN} 
+10
source share

Jay answers but

 !i::Send {Up} Return !k::Send {Down} Return !l::Send {Right} Return !j::Send {Left} Return 

is a much faster solution.

+1
source share

I think the best approach is to use the free TouchCursor application http://touchcursor.sourceforge.net/overview.html It has a training mode, it is easier to configure. In addition, I was surprised to learn that using โ€œspaceโ€ rather than โ€œaltโ€ works much better in practice.

0
source share

All Articles