Organize your script--use the same syntax
{Bracket structure} to group in notepad++
Hotkeys to create:
Reload
Pause
Suspend
Windows Spy
At the risk of giving a man a fish, here is what I use to activate Windows Spy, that comes with your ahk install.
^Capslock:: ;Windows Spy
{
sendinput {capslock up}
;ListVars
ifwinexist ahk_class AU3Reveal
{
winclose
}
else
{
SetCapsLockState Off
run AU3_Spy.exe
}
return
}