rafster Posted March 27, 2021 Share Posted March 27, 2021 Hi guys, I'm launching Cemu 1.22.8 via Launchbox & BigBox. Games start up and play fine however when I try to exit a game by hitting Esc, Cemu just goes into windowed mode. I have seached for and found old posts that discussed a simialar issue but none of the suggestions have worked for me. I currently have the follwoing in my AHK script field : $Esc:: Process, Close, {{{StartupEXE}}} If anybody has any suggestions I'd really appreacite hearing them. Thanks! Quote Link to comment Share on other sites More sharing options...
bundangdon Posted March 27, 2021 Share Posted March 27, 2021 (edited) I was just trying to do the same thing now with Cemu and found the solution Type this in the "Running AutoHotkeyScript" options for Cemu: ESC:: { SetTitleMatchMode, 2 WinWaitActive, Cemu Send !{f4} } Edited March 27, 2021 by bundangdon 1 Quote Link to comment Share on other sites More sharing options...
rafster Posted March 27, 2021 Author Share Posted March 27, 2021 Hey, thanks for the quick reply bundangdon! I've copied and pasted this code as you've suggested. Should the Esc key now close down Cemu, is that what it does for you? Cemu is still going into windowed mode when I hit Esc. Thanks in advance for confirming. Quote Link to comment Share on other sites More sharing options...
Your Friendly A.I Overlord Posted March 27, 2021 Share Posted March 27, 2021 First of all, check if you run Cemu with admin rights. If so disable that. Many people have difficulty closing emulators through an AHK script when the emulator run with admin rights. Second, often there are multiple scripts (or variations) that wil work. But make sure it is pasted in the "Running AutoHotKey Script" tab. I myself use the following script: $Esc:: { WinClose, ahk_exe Cemu.exe } I just updated Cemu to the latest version and tested it and it closes like it should. 1 Quote Link to comment Share on other sites More sharing options...
rafster Posted March 27, 2021 Author Share Posted March 27, 2021 Hi Koroth, thanks for that, run as admin was checked. Now working, thanks to the both of you for helping me out! 1 1 Quote Link to comment Share on other sites More sharing options...
tallpr24 Posted February 11, 2023 Share Posted February 11, 2023 hello, i now running into this issue as well. I am not running cemu as admin and pasted the script as well. but it still goes into window mode. any other sugguestions? Quote Link to comment Share on other sites More sharing options...
moudrost Posted February 11, 2023 Share Posted February 11, 2023 This is the version that works for me. $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} } Quote Link to comment Share on other sites More sharing options...
SiriusVI Posted June 9, 2023 Share Posted June 9, 2023 (edited) On 2/11/2023 at 5:17 PM, moudrost said: This is the version that works for me. $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} } Doesn't work for me either. Just goes into windowed mode. Not running as admin. It closes however, when I hit the exit combo on my controller a second time. Odd. Even weirder: If I hit ESC on my keyboard, the emulator closes immediately. Edited June 9, 2023 by SiriusVI Quote Link to comment Share on other sites More sharing options...
sundogak Posted June 9, 2023 Share Posted June 9, 2023 46 minutes ago, SiriusVI said: Doesn't work for me either. Just goes into windowed mode. Not running as admin. It closes however, when I hit the exit combo on my controller a second time. Odd. Even weirder: If I hit ESC on my keyboard, the emulator closes immediately. See this thread if using CEMU version 2.0 Quote Link to comment Share on other sites More sharing options...
SiriusVI Posted June 9, 2023 Share Posted June 9, 2023 3 minutes ago, sundogak said: See this thread if using CEMU version 2.0 Thank you! This did the trick: ESC:: { SetTitleMatchMode, 2 WinWaitActive, Cemu WinClose } 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.