nailer052 Posted December 24, 2017 Posted December 24, 2017 Hi Guys, I read somewhere that Desmume can go full screen now by putting in a default command line paramter. I have tried -fullscreen --windowed fullscreen. Is it something else? Thanks in advance Quote
Freestate Posted December 26, 2017 Posted December 26, 2017 For no debug console and full screen use this. Open desmume.ini (in your emulator folder) search [Console] and arrange like this [Console] PosX=0 PosY=0 Width=0 Height=0 Show=0 For full screen use this on AUTOHOTKEY OPTIONS (In emulator configurator on launchbox) WinWaitActive , DeSmuME ; Send !{Enter} 2 1 Quote
cleverest Posted January 8, 2018 Posted January 8, 2018 On 12/26/2017 at 5:41 AM, Freestate said: For no debug console and full screen use this. Open desmume.ini (in your emulator folder) search [Console] and arrange like this [Console] PosX=0 PosY=0 Width=0 Height=0 Show=0 For full screen use this on AUTOHOTKEY OPTIONS (In emulator configurator on launchbox) WinWaitActive , DeSmuME ; Send !{Enter} That was great! Thanks! But how do I close the emulator without pressing ALT+4? is there a one key solution for doing that? ESC doesn't work and there is no X to click with the mouse... Quote
mviars Posted January 5, 2019 Posted January 5, 2019 Has anyone come up with anything to use the ESC button to exit yet? Quote
corgiman97 Posted January 5, 2019 Posted January 5, 2019 10 hours ago, mviars said: Has anyone come up with anything to use the ESC button to exit yet? Yes. You can always use AutoHotKey-script: Esc:: !F4 return Quote
Cheetos Posted July 4, 2020 Posted July 4, 2020 On 1/5/2019 at 6:47 PM, razorhasyou said: Yes. You can always use AutoHotKey-script: Esc:: !F4 return That script didn't work for me. Quote
Retro808 Posted July 4, 2020 Posted July 4, 2020 5 hours ago, Cheetos said: That script didn't work for me. That posted script does not look right. Try this: $Esc:: Send !{f4} 1 Quote
Cheetos Posted July 4, 2020 Posted July 4, 2020 (edited) That doesn't work either but thanks for trying to help. Edited July 4, 2020 by Cheetos Quote
Retro808 Posted July 4, 2020 Posted July 4, 2020 On 7/4/2020 at 6:49 PM, Cheetos said: That doesn't work either but thanks for trying to help. Maybe this one? I tested this one and the one earlier and they both work. What tab are you putting it in? I do not use Desmume so not sure what would be the issue if this one does not work. $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} } 1 Quote
Cheetos Posted July 5, 2020 Posted July 5, 2020 (edited) Didn't work. I'm thinking maybe Desmume is blocking ESC key or something. It's weird because the fullscreen script Freestate wrote above works but none of the exit scripts do. Edited July 5, 2020 by Cheetos Quote
DOS76 Posted July 5, 2020 Posted July 5, 2020 http://www.emucr.com/2020/06/desmume-git-20200619.html try this git version of the emulator from June 19th and see if you get different results. Quote
Kiinkyfoxx Posted July 6, 2020 Posted July 6, 2020 I've just checked on my system and the version from DOS76 does close with Escape, try copying and pasting the whole ahk below into the Running AutoHotKey Script tab in edit emulator, this is an adapted version of the one I use (you don't need all the other crap relating to my set up), but as said I just tested it on the above and it worked. I'm not taking credit for this AHK either, the top part is what was already on this thread and the bottom part is no different to other ones on here. That should in theory wait for DeSmuME to open, then make it go full screen, (I get a little ping sound on mine so I know when it is done, as it's normally still hidden by the startup screen as this point-I think that ping is part of DeSmuME) and then when you have finished playing Escape should shut it down, It might also be worth checking within DeSmuME that you haven't got Escape set as any of its own hotkeys in Config----Hotkey Config Cheers SetTitleMatchMode, 2 WinWaitActive, ahk_class DeSmuME Send, !{Enter} Esc:: { WinClose, DeSmuME } 1 Quote
cleverest Posted July 6, 2020 Posted July 6, 2020 This is my DeSmuME "Running Hotkey Script" to go full screen and exit with ESC or by pressing L3: WinWaitActive , DeSmuME ; Send !{Enter} $Esc:: { Process, Close, {{{StartupEXE}}} } $joy9:: ; my L3 button { keywait, joy9, t2 if errorlevel <> 0 { Process, Close, {{{StartupEXE}}} ;closes emulator } } Note if nothing is going full screen with it, you just need to set it full screen once in a game and exit and I think it remembers is the next time, the script above may just be for ways to exit it. 1 Quote
Cheetos Posted July 7, 2020 Posted July 7, 2020 (edited) 17 hours ago, Kiinkyfoxx said: ... into the Running AutoHotKey Script tab in edit emulator... Bruh... No one told me I had to copy the Esc script to the Running tab. I always copied it to Exit ahk script tab. Is it how it's usually done? Are you supposed to copy all the scripts to the Running tab? It worked after copying it to the Running AHK Script tab, btw. Edited July 7, 2020 by Cheetos Quote
Kiinkyfoxx Posted July 7, 2020 Posted July 7, 2020 I could be wrong and someone with more knowledge will hopefully confirm or correct me, but I think it as follows; Running AHK script tab is used whilst the emulator/game is running-so normally closing emulator scripts would go in this part so you can use them whilst the emulator/game is running. Exit tab is for after you have exited the emulator/game-not sure if this is just for the Exit part of the pause menu or in general, I know that I only use the Exit AHK tab when I need extra bits to close down (such as lightgun based stuff) after I have exited from the Pause menu in game. 1 Quote
neil9000 Posted July 7, 2020 Posted July 7, 2020 The Exit tab is for exiting from the pause screen, anything you want applied to the emulator launched goes in the running section. 1 Quote
Altilla Posted June 19, 2022 Posted June 19, 2022 I know this post is old but I came up with a solution to launch Desmume in full-screen https://forums.desmume.org/viewtopic.php?id=12124 I made instructions for stand-alone and for LaunchBox If you have any issues or questions I'll get back to you as soon as possible Cheers. 1 2 Quote
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.