Teusan Posted May 26, 2017 Share Posted May 26, 2017 The solution I found was using RocketLauncher. It is a bit more complicated than using Launchbox alone but it is worth have it working: when you configure your ePSXe emulator with RLUI, you go to "Settings", "Main Settings", "controls" then set your exit emulator key with your gamepad. It works flawlessly. Quote Link to comment Share on other sites More sharing options...
Lordmonkus Posted May 26, 2017 Share Posted May 26, 2017 Definitely an overkill solution when a simple AHK script works perfectly. Quote Link to comment Share on other sites More sharing options...
SentaiBrad Posted May 26, 2017 Share Posted May 26, 2017 Yea, putting in the AHK script that is on the forums will fix this right away. Quote Link to comment Share on other sites More sharing options...
Teusan Posted May 27, 2017 Share Posted May 27, 2017 I tried both script solution (with alt f4 or escape) and also tried Lilypad, both didn't work. For the ahk script, it showed the confirmation on exit when I pressed my gamepad exit combination. As for Lilypad, it did not work at all. The RocketLauncher stuff is not the best solution I agree, I understand that in fact it is not RocketLauncher that closes the confirmation box, in fact I set same combination for exiting emulator in both RocketLauncher and Launchbox, so when I am playing and press my exit buttons both RocketLauncher and Launchbox catch the input, so it presses twice exit and I have no exit confirmation. I was using RocketLauncher for emulator bezels anyway so it does not bother me. I still do not understand why the AHK script did not work though. Quote Link to comment Share on other sites More sharing options...
SentaiBrad Posted May 27, 2017 Share Posted May 27, 2017 The AHK script should have worked, so I am confused there too. When I tested things, I pressed my controller automation buttons again on that screen and it closed fully. Sure, you have to press them twice, but it's much better than having to close it with your mouse. Quote Link to comment Share on other sites More sharing options...
tallpr24 Posted June 24, 2017 Share Posted June 24, 2017 On 5/12/2017 at 3:56 PM, tacos912 said: This is how I fixed it: In Launchbox go to Tools->Manage Emulators. Click edit on your ePSXe. Put this in the AutoHotKey Script: ; This section closes EPSXE when pressing alt+f4(the auto close for controller) $!f4:: { Process, Close, {{{StartupEXE}}} } The automation close via controller calls ALT+F4 on the keyboard to close the emu. So by using an AutoHotKey Script to close the application on ALT+F4 it solves the problem. This should work with any other emulators that experience this issue(epsxe is the only one I found) this worked for me!!! thank you, the other suggestions did no. Quote Link to comment Share on other sites More sharing options...
dov_EL Posted July 6, 2017 Author Share Posted July 6, 2017 Finally This autohotkey WORK 100%% $Esc:: { Process, Close, {{{StartupEXE}}} } LShift::return LAlt::return LCtrl::return Quote Link to comment Share on other sites More sharing options...
Zombeaver Posted July 6, 2017 Share Posted July 6, 2017 12 minutes ago, dovella said: LShift::return LAlt::return LCtrl::return I'm not sure why you have this bit in there. This shouldn't do anything whatsoever in and of itself. Literally all the :: does is "When I press this key, do the next thing I specify" so in your case LShift, LAlt, or LCtrl will send... return. Which does nothing by itself. Here's an example of how it can be used: Mind you, having it in there shouldn't hurt anything, but it shouldn't actually be doing anything either Quote Link to comment Share on other sites More sharing options...
stonecracker Posted February 9, 2019 Share Posted February 9, 2019 Hi All, I was having similar problems. My system was hanging on the confirmation window so I made one change to the popular script below On 1/21/2017 at 5:42 PM, AnAnarchist said: $Esc:: { Process, Close, {{{StartupEXE}}} } I added a Send {Enter} to address the confirmation box that was popping up. My exists are now extremely clean. My script below. $Esc:: { Process, Close, {{{StartupEXE}}} Send {Enter} } Hope this is helpful to others Stone Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.