Auto-Hotkey
Jul 17, 2021
Download
Make script
make a auto correct script
::rpa:Robotic Process Automation
return
Remember a few things
^ = Ctrl
# = Windows
! = Alt
+ = Shift^q::
Send, This is Anders Jensen
return
Checking if a window is active
#IfWinActive Untitled - Notepad
An example below shows how to create a function
CreateFolder(FolderName){Send, ^+n
Send, %FolderName% ; this is for using an argument
Send, (Enter)
Sleep, 500}