Build Your Own Arcade Controls Forum
Main => Software Forum => Topic started by: EssexMame on March 08, 2015, 01:40:07 pm
-
Hi,
I want my gamepad Select AND Start buttons, together, to Quit the Emulator (or MALA). Simply, send ESC.
I did a simple Autohotkey script which actually appears to work on occasion but mostly Pressing START ONLY still causes the quit to fire!
My script is as follows, which I have compiled and then I run it before running my FE (Mala). However, Start alone should start the selected game but it actually fires ESC without Joy9 even being pressed.
Joy9 & Joy10::Send {Esc}
-
Hi,
I want my gamepad Select AND Start buttons, together, to Quit the Emulator (or MALA). Simply, send ESC.
I did a simple Autohotkey script which actually appears to work on occasion but mostly Pressing START ONLY still causes the quit to fire!
My script is as follows, which I have compiled and then I run it before running my FE (Mala). However, Start alone should start the selected game but it actually fires ESC without Joy9 even being pressed.
Joy9 & Joy10::Send {Esc}
If you are not a programmer you could take a look to my AllInOneFYC program.
Greetings.
-
~1joy10::
if not GetKeyState("1joy9","P")
return
Send {Esc}
return
I think this script will work :-\