Build Your Own Arcade Controls Forum
Main => Software Forum => Topic started by: Celsius on April 03, 2011, 12:36:34 pm
-
Is there a way to use the numpad keys (and some others) in SSF(not able to reassign them within ssf :badmood:)? I tried autohotkey with
#IfWinActive ahk_class SSF Ver0.12
MButton::Escape
Left::Numpad4
Right::Numpad6
Up::Numpad8
Down::Numpad2
Enter::&
...
But none of the keys work (not & or enter...only mbutton functions as escape) in ssf if I run the script. So I was wondering if anyone has a solution for my problem. :dunno
Btw I'm using :notworthy: mala as fe.
-
Hi there.
From what I read, it seems you want to use the numpad keys instead of the up,down,left,right key. If that is the case then I think you have the mapping inversed. Try this:
Numpad4::Left
Numpad6::Right
Numpad8::Up
Numpad2::Down
&::Enter
Hope this helps.
Congui
-
No you tell ahk to "replace" left::(with)numpad4, but... I just found out, to completely remap I had to add the inversed lines otherwise ssf would still see it's a numpad stroke instead of directional
MButton::Escape
Left::Numpad4
Right::Numpad6
Up::Numpad8
Down::Numpad2
Enter::&
Numpad4::Left
Numpad6::Right
Numpad8::Up
Numpad2::Down
&::Enter
...
Thanks for the help