Você pode remapear a tecla NumLock como esta e a F1 fará a alternância e atuará como o NumLock regular:
F1::NumLock
Se você quiser alternar manualmente, pode gerenciar um booleano assim:
;initialize
flag := 1
;toggle
flag := !flag
Aqui está um código que ativará e desativará todo o script:
;this will toggle the script on and off and not actually send the Insert key
Insert::Suspend
;this will toggle the script on and off but still send the Enter key
Enter::
Suspend
Send {Enter}
Return