Again, I am new to the Autohotkey section, a problem I face right now. Ok, let me explain some on this as below.
a::
loop
{
; do something
break
}
Send,{b}
return
b::
; do something
Send,{a}
return
When "a" pressed, it is fined to call "b" activity, but after that, inside "b" it couldn't call "a" again. Why?
$
like$a::
and$b::
– wOxxOm{}
to send a letter key, justsend a
. Also try all methods:sendplay
orsendEvent
orsendInput
– wOxxOmgosub
orgoto
(doesn't matter which one in your case, since there is areturn
after it anyways) INSTEAD ofsend
– phil294