Trying to figure out how to make my numpad more functional with combo keys, single, double, and long press.
Here is the code I have so far. The long press doesn't work but everything else does. Any ideas? I have a feeling it has something to do with
Code: Select all
$
THANK YOU!
Code: Select all
$Numpad1::
KeyWait, Numpad1, T0.1
if (ErrorLevel)
Send long
else {
KeyWait, Numpad1, D T0.1
if (ErrorLevel)
Send single
else
Send double
}
KeyWait, Numpad1
return
Numpad1 & Numpad2::
msgnbox, combo
return