One part of my AutoHotKey script replaces @@
with my email address. Currently, I'm doing this like so:
::@@::
SendInput, [email protected]
return
Simple enough and it works fairly well but you need to push space / comma / period / etc before it is replaced. Is there a way instantly replace it without any further interaction - it's replace as soon as the criteria is matched?
Following the AutoHotKey documentation, I've tried:
StringReplace, var_Email, var_Email, @@, [email protected], All
but it just clears the @@
.