KDestiny Posted April 28, 2020 Share Posted April 28, 2020 A script to send Alt F4 to any program (It's for the sega Fusion emulator) or a Shift Tab Quote Link to comment Share on other sites More sharing options...
Lordmonkus Posted April 28, 2020 Share Posted April 28, 2020 Quote Link to comment Share on other sites More sharing options...
latin625 Posted September 29, 2021 Share Posted September 29, 2021 (edited) Ok. Got it solved. That last thread from LordMonkus was the charm. Just change the .exe to the one you want to close. Thanks. $ESC::WinClose, ahk_exe higan.exe Edited September 29, 2021 by latin625 Quote Link to comment Share on other sites More sharing options...
Montana75 Posted November 22, 2021 Share Posted November 22, 2021 Or use this code. $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} } Quote Link to comment Share on other sites More sharing options...
meecob Posted February 15 Share Posted February 15 This doesn't work for Yuzu. I've tried everything, I literally mean everything. Hitting escape just goes to windowed mode and then I have to press ctrl+q. Alt f4 does work but I'd like to use escape like all my other platforms. Can't I map ctrl + f4 to escape or ctrl + q ? Cheers my friend Quote Link to comment Share on other sites More sharing options...
bundangdon Posted February 15 Share Posted February 15 17 minutes ago, meecob said: This doesn't work for Yuzu. I've tried everything, I literally mean everything. Hitting escape just goes to windowed mode and then I have to press ctrl+q. Alt f4 does work but I'd like to use escape like all my other platforms. Can't I map ctrl + f4 to escape or ctrl + q ? Cheers my friend Try this in the "Running Script" section. (Copy and paste) This works for me with Yuzu and several other emulators. Then, you can press ESC to exit out of games. ; This section closes Yuzu when pressing Escape $Esc:: { Process, Close, {{{StartupEXE}}} } Quote Link to comment Share on other sites More sharing options...
meecob Posted February 16 Share Posted February 16 23 hours ago, bundangdon said: Try this in the "Running Script" section. (Copy and paste) This works for me with Yuzu and several other emulators. Then, you can press ESC to exit out of games. ; This section closes Yuzu when pressing Escape $Esc:: { Process, Close, {{{StartupEXE}}} } I just typed a really long winded message and it didn't submit my reply. I doesn't work for me. It just takes me back to windowed mode. Control Q does work fine but I wish to use Escape. The bit where I said "I've tried everything, I literally mean everything" I meant it. Thanks for trying. Quote Link to comment Share on other sites More sharing options...
Retro808 Posted February 16 Share Posted February 16 3 hours ago, meecob said: I just typed a really long winded message and it didn't submit my reply. I doesn't work for me. It just takes me back to windowed mode. Control Q does work fine but I wish to use Escape. The bit where I said "I've tried everything, I literally mean everything" I meant it. Thanks for trying. Both of these work just make sure you place either in the “Running Script” tab and NOT the “Exit Script” tab $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} } or you can use $Esc:: Send ^q Quote Link to comment Share on other sites More sharing options...
Your Friendly A.I Overlord Posted February 16 Share Posted February 16 7 hours ago, meecob said: I doesn't work for me. It just takes me back to windowed mode. Control Q does work fine but I wish to use Escape. Make sure you do not run yuzu.exe with admin rights. 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.