Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: SSF changing inputs (Solved)  (Read 1657 times)

0 Members and 1 Guest are viewing this topic.

Celsius

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 81
  • Last login:May 10, 2015, 11:40:41 am
    • Rcade project
SSF changing inputs (Solved)
« 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.
« Last Edit: April 04, 2011, 10:30:58 am by Celsius »

Congui

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 142
  • Last login:July 23, 2015, 12:54:53 pm
  • Newbie!
Re: SSF changing inputs
« Reply #1 on: April 04, 2011, 09:52:09 am »
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

Celsius

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 81
  • Last login:May 10, 2015, 11:40:41 am
    • Rcade project
Re: SSF changing inputs
« Reply #2 on: April 04, 2011, 10:29:39 am »
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