I have a hotstring in Autohotkey which displays a reminder any time a job code is typed with capital letters.
::lpn::
::nast::
::pca::
if(GetKeyState("Shift")) ; check for capital letters
MsgBox Reminder - Set direct pay to 100
return
Unfortunately, The default behavior of a hotstring is to replace any typed text. This means whenever I type NAST, it is replaced with .
Can I create a hotstring which doesn't erase the typed job code?