回答:
NumLockキーを次のように再マップすると、F1が切り替えを行い、通常のNumLockと同じように動作します。
F1::NumLock
手動で切り替えを行いたい場合は、次のようなブール値を管理できます。
;initialize
flag := 1
;toggle
flag := !flag
スクリプト全体のオンとオフを切り替えるコードを次に示します。
;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