I would like to set up some "Control + a Character" that would cause a "string of characters". Example: Control + S = *** Email address is removed for privacy ***.Then I wouldn't have to type my email address all the time.
Follow this and it would work:
- Install AutoHotKey v2.0 from https://www.autohotkey.com/
- In AutoHotKey app > press New script > Create an empty AHK script
- Choose a combination like "Ctrl+Shift+Z" (Not "Ctrl+S" because it's widely used by some apps)
- Open the empty ".ahk" script file with Notepad
- Copy/Paste this --> ^+z::Send "*** Email address is removed for privacy ***"
- Save and close Notepad
- Double click on your ".ahk" script file
- Done!
Now when you press "Ctrl+Shift+Z", the string "*** Email address is removed for privacy ***" will appear automatically.
You can add the script file to run on Startup, or to manually double-click the script file every time you need to use it.