Jump to content
LaunchBox Community Forums

Fix for BigBox freezing after Automated Close


iamsiincere

Recommended Posts

Hey. I've noticed a bunch of different forums online with people having issues (including myself) whenever they use the controller automation to shut down the emulator and go back to BigBox, it freezes. 

I've been going in circles trying to find someone with the answer. I found a topic on here about autohotkey scripts and took someones script, then modified it.

I used...

; This section closes Fusion when pressing Escape
1Joy8:: ;you have to press 1Joy7 first::
{
    Process, Close, {{{StartupBigBox.EXE}}}
};Exit

 

You can replace "Fusion" with the name of the emulator, "Escape" with whatever shortcut is used to exit that emulator and replace the number "8" or "7" with whatever button you have assigned for the "hold" then press "this button" to exit a game. A pop error shows up, but if your emulator opens in full screen, the emulator will overlap it and allow you to use the controller to play the game and exit without any issues. Maybe someone can perfect what I've done so that there are no pops. I've only tested this out with Fusion (Sega genesis games), Snes9x and VLC (I imported a movie and TV shows into launchbox).

Link to comment
Share on other sites

I use the below script anytime I have issues closing and need an AHK script to close. Currently have it on a few emulators on my test pc and It closes well with no pop up error showing up. The delay allows it so random button mashers do not accidentally close the emulator when playing.  This is set for my 8Bitdo "Select" (hold) and "Start" (action) buttons so you would have to figure what your controller buttons are.

Joy11::
If GetKeyState("Joy12")
{
   SetKeyDelay, -1, 110
   Process, Close, {{{StartupEXE}}}
}

Return

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...