I am trying to write a basic ahk script to convert some hotkeys in a game from {'F1' 'F2' 'f3'and Esc} to num1 num2 num3 and num enter. <-- the keys on the Keypad on the right of my keyboard.
Issue
The ahk script does not recognize these values as keys in my number pad. (the spot on the right side of keyboard that has values from 1-9 in a 3 x 3. I am having trouble finding what to enter for my Num/Keypad values in the script.
This is what I currently have...
Num Enter::Escape
Num 1::F1
Num 2::F5
Num 3::F6
Num 8::up
Num 6::right
Num 5::down
Num 4::left
Ctrl::suspend
<----It does not recognize "Num" as a key
And this is the message that I get after I try to run the script via AutoHotKey
Error at line 1.
Line Text: Num Enter:: Escape
Error;Invalid Hotkey
The program will now exit
My Question
What text should I enter to trasnfer the original hotkeys (F1 F2 F3 and Esc to Number pad 1 2 3 and Enter <-- the Enter on the number pad not the one on your main keyboard.