Trying to bind Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
Infinitytimestwo
Posts: 2
Joined: 27 Sep 2020, 14:19

Trying to bind

Post by Infinitytimestwo » 27 Sep 2020, 14:28

Hey guys very new to athk and I'm having some trouble trying to bind following :
I want Shift+e to perform l.

Very basic but I dont understand how and would like some help, Thank you :)

Shift + e means holding in shift and then pressing e.
gregster
Posts: 9056
Joined: 30 Sep 2013, 06:48

Re: Trying to bind  Topic is solved

Post by gregster » 27 Sep 2020, 14:41

Usually

Code: Select all

+e::Send l
should do. You can also try SendInput l or Send {Text}l instead of Send l, depending on the target program/game.
Infinitytimestwo
Posts: 2
Joined: 27 Sep 2020, 14:19

Re: Trying to bind

Post by Infinitytimestwo » 28 Sep 2020, 09:35

gregster wrote:
27 Sep 2020, 14:41
Usually

Code: Select all

+e::Send l
should do. You can also try SendInput l or Send {Text}l instead of Send l, depending on the target program/game.
Thanks! The first one did it.
Post Reply

Return to “Ask for Help (v1)”