I want to write an autohotkey script that lets me enter a comma when I hit SHIFT + Numpad .
The modifier symbol for SHIFT is the plus sign +
. I wrote this
+NumpadDot::
Send, ,
return
But I find this does not work. If I change the modifier to CTRL ^
, it works as I expect.
^NumpadDot::
Send, ,
return
Why does my first script not work?