ZzackK Posted March 24, 2016 Share Posted March 24, 2016 Hi When I close epsxe using padx360 and autohotkey "close window" I have this: http://i.imgur.com/O7LWAFY.png How exit direct to BigBox and list of games? Windows 10, espxe 2.0. Link to comment Share on other sites More sharing options...
DOS76 Posted March 24, 2016 Share Posted March 24, 2016 If you go into LaunchBox and navigate to tools, manage emulators, epsxe and edit this will open the form to edit your ePSXe on the top of that form there will be a autohotkey tab click on it and enter this code. ; This section closes ePSXe when pressing Escape $Esc:: { Process, Close, {{{StartupEXE}}} } I've heard recently from other users that if you are using a controller then this doesn't work however if you are using a keyboard then it works without displaying the confirm message. Link to comment Share on other sites More sharing options...
ZzackK Posted March 24, 2016 Share Posted March 24, 2016 Doesnot work mit padx360 in BB, keyboard and button "esc" works nice but I play on TV :( Link to comment Share on other sites More sharing options...
DOS76 Posted March 24, 2016 Author Share Posted March 24, 2016 Yeah me to but I have a keyboard for mine. I don't understand why it doesn't work the controller should just be doing the same thing the keyboard is. Link to comment Share on other sites More sharing options...
ZzackK Posted March 25, 2016 Share Posted March 25, 2016 Nestopia and I have the same problem with exiting when I use pad360 in BB Link to comment Share on other sites More sharing options...
DOS76 Posted March 25, 2016 Author Share Posted March 25, 2016 Yeah I've heard that it is an issue with KAT5200 also and possibly a few others if i recall correctly. Nestopia has an option though to turn off the confirm Link to comment Share on other sites More sharing options...
DOS76 Posted March 25, 2016 Author Share Posted March 25, 2016 If you go into preferences there is a check box to turn it off. Dolphin also has this checkbox in their settings in case you use that also. Link to comment Share on other sites More sharing options...
ZzackK Posted March 25, 2016 Share Posted March 25, 2016 THX. one step forward :) Link to comment Share on other sites More sharing options...
DOS76 Posted March 25, 2016 Author Share Posted March 25, 2016 I figured out a little what is going on. Outside of LaunchBox in eSPXe 2.0 if you press atl+f4 you get the exit confirmation message while if you hit escape it will close the game and take you back to the emulators gui then you can hit alt+F4 and there will be no confirmation message. So basically when you set up the autohotkey for the controller the close process isn't using escape it is using alt+F4 and that is why you are still getting the confirmation message. So unless there was an option to use escape as a specific button in LaunchBox then it isn't going to work out how you want unless you use another program like Xpadder to set up button(s) to act like escape. Link to comment Share on other sites More sharing options...
ZzackK Posted March 26, 2016 Share Posted March 26, 2016 You are right but Xpadder is too expansive at this moment for me. I bought the best frontend :) Link to comment Share on other sites More sharing options...
DOS76 Posted March 26, 2016 Author Share Posted March 26, 2016 joy2key is free. Link to comment Share on other sites More sharing options...
ZzackK Posted March 26, 2016 Share Posted March 26, 2016 Joy2key works but how add into launchbox and olny for epsxe? Link to comment Share on other sites More sharing options...
DOS76 Posted March 26, 2016 Author Share Posted March 26, 2016 When i used to use X-Padder it ran at startup but until I turned my gamepad on it didn't do anything then once i turned the controller on then it just started working and emulating the button presses. Due to my HTPC having a dedicated wireless keyboard I only use the controller to play games so because you are trying to use the gamepad for everything this may actually not be a solution for you as what ever you mapped doesn't work in only one program but it works like buttons are the same as your keyboard buttons and it works everywhere. If you only want to map the escape key then do that for a button you won't need in ePSXe or if they allow combos in J2K (I haven't used it in awhile and don't recall) set to buttons to act like escape when pressed together and everything else should still work as normal. Link to comment Share on other sites More sharing options...
ZzackK Posted March 26, 2016 Share Posted March 26, 2016 I use bigbox in steam bigpicture and some games from valve platform needs all buttons pad360. I do not see the possibility of setting two buttons pad360 for one key in j2k. Link to comment Share on other sites More sharing options...
DOS76 Posted March 28, 2016 Author Share Posted March 28, 2016 ZzackK I started a ticket to add escape to the controller mapping it can be found here go and vote for it so it has a better chance of being implemented. Link to comment Share on other sites More sharing options...
DOS76 Posted March 28, 2016 Author Share Posted March 28, 2016 Niglurion actually has a solution to this issue it is can be found in this post Basically you need to get the Lilypad controller plugin and use that making sure that under hacks you enable the checkbox exit emulator on windows close. If you have PCSX2 then the plugin should be in the plugins folder for that emulator. Link to comment Share on other sites More sharing options...
ZzackK Posted March 29, 2016 Share Posted March 29, 2016 I buy a beer for you if you live in Europe :D THX Link to comment Share on other sites More sharing options...
niglurion Posted March 29, 2016 Share Posted March 29, 2016 ahah you're welcome. I didn't even know it was an issue with epsxe . I take note for the beer (yes, I live in Europe) Link to comment Share on other sites More sharing options...
Teusan Posted May 26, 2017 Share Posted May 26, 2017 Hi Lilypad is not working for me. I have another issue with Lilypad, when I exit with esc key, screen resolution does not reverse back to Windows resolution (1920x1080) but remains in ePSXe resolution (1280x960). I don't have this issue with epsxe core input. So I guess I'll stay with it but still feeling annoyed of the confirmation on exit. Link to comment Share on other sites More sharing options...
Jackster1209 Posted June 3, 2017 Share Posted June 3, 2017 I've been looking for a solution for this myself for a while. I use Bigbox on my tv through the steam link with an xbox 360 controller, and wanted an easy way to close epsxe with the controller without an external program, or losing the guide button which I can use for the steam overlay. After doing some digging, I came up with this custom autohotkey script that you can add to the epsxe emulator in launchbox. This will allow epsxe to be closed by holding down the start button, and pressing the back button on the 360 controller. Cheers! Toggle = 0 ; Resets "Toggle" for first use Joy1:: If not GetKeyState("Joy8") ; Checks to see if Joy2 is held down Return Gosub, SubToggle Return Joy2:: If not GetKeyState("Joy7") ; Checks to see if Joy1 is held down Return Gosub, SubToggle Return SubToggle: Toggle++ Send, {Esc} If Toggle = 1 SoundPlay, enter.wav, Wait If Toggle = 2 { SoundPlay, exit.wav, Wait Toggle = 0 } Return Link to comment Share on other sites More sharing options...
Recommended Posts