Hi, I'm new to the forum and decided to register after not finding anything about this. I'm new to autoit so please forgive my ignorance.
How could I make a script that sent ("ab") whenever I pressed "a" for example? If one naively just has
HotKeySet ( "a" , "go" )
Func go()
Send("ab")
EndFunc
then it just never stops sending 'b's.
Thanks for the help.