Jump to content
LaunchBox Community Forums

Jake612

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by Jake612

  1. 16 minutes ago, sundogak said:

    @Jake612

    CEMU uses Alt-F4 to close in standalone mode.  So this is what I use and this works on current versions of CEMU and LB:

    In the CEMU Emulator Tab  "Exit AutoHotkey Script" put this in:

    
    Send !{f4}   

    The above will work in the Pause Screen exit command as well as whatever controller combination you set up in LB for exit game.  The "Process Close" AHKs given in the past have been found to not always be reliable.  Plus, the Alt-F4 is what CEMU expects as normal exit anyway. 

    Optional:  If you also want to use the keyboard Escape key to exit then optionally add this in the "Running AutoHotkey Script" tab:

    
    ESC::
    {   
        SetTitleMatchMode, 2
        WinWaitActive, Cemu
        Send !{f4}               
    }

    You shouldn't need to run CEMU in admin mode for either of these or really any reason I can think of at least for BB/LB usage.

    Thank you for the response!

    My computer restarted and it magically worked again without me doing anything. No idea why but I'm not complaining.

  2. Hey, All

    So I updated Cemu to 1.18.2 and launchbox to 10.14 and now I can't get Cemu to close with my Xbox controller. I use the select button + start button to close all my emulators and Cemu is the only one to stop working.

    I have

     $Esc::
    {
        Process, Close, {{{StartupEXE}}}
    }

    for my AHS

    and 

    Process, Close, {{{StartupEXE}}}

    for my close script.

    I've tried a bunch of other scripts with no luck thus far. Any ideas?

    I also don't have cemu running in administrative mode  because that disabled my esc command to close out with a keyboard.

     

×
×
  • Create New...