#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
$Numpad1::
Send {Tab}
Send {Space}
Sleep, 100
;Send {Enter} ; Remove the ";" in front of the word Send to submit
Sleep, 100
;Send ^{Tab} ; Remove the ";" in front of the word Send to switch tabs after submitting
return
$Numpad2::
Send {Tab 2}
Send {Space}
Sleep, 100
;Send {Enter} ; Remove the ";" in front of the word Send to submit
Sleep, 100
;Send ^{Tab} ; Remove the ";" in front of the word Send to switch tabs after submitting
return
End:: ;Suspend
Suspend
if (A_IsSuspended)
Traytip ,,Hotkeys have been suspended!,5,0
else
Traytip ,,All hotkeys are now active!,5,0
return