chording not working as expected, key doesn't work when not chording

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
daniel
Posts: 17
Joined: 23 May 2016, 22:41

chording not working as expected, key doesn't work when not chording

09 Jun 2016, 22:05

Hi, I created a chord but it doesn't work properly. I'm using this:

Code: Select all

b & g::
Send, x
Return

k & m::
Send, z
Return
And sure enough, b & g send one x but then when I just hit b, nothing happens. Same thing when I hit k. Nothing happens. How do I get b to fire off properly when it's hit by itself and also to continue chording with g to create an x.

Thanks in advance to the person who can help me out with this.
daniel
Posts: 17
Joined: 23 May 2016, 22:41

Re: chording not working as expected, key doesn't work when not chording

09 Jun 2016, 22:10

Well I just came up with a solution:

Code: Select all

b & g::
Send, x
Return

b::
Send, b
Return

k & m::
Send, z
Return

k::
Send, k
Return
Works well it seems. If anybody else has another more elegant way of doing it, I'd be interested in learning how you did it.

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Rohwedder and 85 guests