One part of my AutoHotKey script replaces @@ my email address. I am currently doing it like this:
::@@:: SendInput, example@domain.com return
Simple enough, and it works quite well, but you need to press the space / comma / period / etc before replacing. Is there a way to instantly replace it without any further interaction - is it replaced as soon as the criteria are matched?
After the AutoHotKey documentation , I tried:
StringReplace, var_Email, var_Email, @@, example@domain.com , All
but it just clears @@ .
source share