Lukeyboy67 Posted May 20, 2018 Share Posted May 20, 2018 Hi, I'm using the 3DS emulator Citra. Does eanyone know the command line to force fullscreen please? ta Quote Link to comment Share on other sites More sharing options...
Retro808 Posted May 20, 2018 Share Posted May 20, 2018 You can paste this AHK into the Autohotkey tab in Launchbox manage emulators for your Citra. It will send F11 after launch to send Citra to fullscreen. SetTitleMatchMode, 2 WinWaitActive, Citra Send {f11} 2 1 Quote Link to comment Share on other sites More sharing options...
Lukeyboy67 Posted May 20, 2018 Author Share Posted May 20, 2018 Sorted! cheers m8 1 Quote Link to comment Share on other sites More sharing options...
Retro808 Posted May 20, 2018 Share Posted May 20, 2018 Any time! Quote Link to comment Share on other sites More sharing options...
neil9000 Posted May 20, 2018 Share Posted May 20, 2018 Cool good solution, you can also set fullscreen to true in the citra ini. Quote Link to comment Share on other sites More sharing options...
Lordmonkus Posted May 20, 2018 Share Posted May 20, 2018 Here's the full AHK script I have for Citra, loads it fullscreen, moves the cursor if it's showing and sets the Escape key to close it out properly. Sleep, 3000 SetKeyDelay, -1, 110 Send {F11} Return Sleep, 3000 SetKeyDelay, -1, 110 MouseMove, 0, 2160, 0, R $Esc:: { Process, Close, {{{StartupEXE}}} } 5 5 Quote Link to comment Share on other sites More sharing options...
Lukeyboy67 Posted May 21, 2018 Author Share Posted May 21, 2018 Perfect! Cheers guys Quote Link to comment Share on other sites More sharing options...
SonsofOcelot Posted August 4, 2018 Share Posted August 4, 2018 On 5/20/2018 at 7:11 PM, Lordmonkus said: Here's the full AHK script I have for Citra, loads it fullscreen, moves the cursor if it's showing and sets the Escape key to close it out properly. Sleep, 3000 SetKeyDelay, -1, 110 Send {F11} Return Sleep, 3000 SetKeyDelay, -1, 110 MouseMove, 0, 2160, 0, R $Esc:: { Process, Close, {{{StartupEXE}}} } Thanks a lot for this script Lordmonkus! Exactly what I needed. As I side note this has got to be the most helpful forum I've been on in a long time. ? 2 Quote Link to comment Share on other sites More sharing options...
jdiegelmann Posted October 5, 2018 Share Posted October 5, 2018 These hide mouse AHK commands don't seem to hide or move the mouse at all on my screen. Anybody know what could be wrong? Literally copy pasted whats up above. Quote Link to comment Share on other sites More sharing options...
Minuteworld Posted December 9, 2018 Share Posted December 9, 2018 the screen is really tiny when i launch games from launchbox, even with all of these scripts and fullscreen ticked in citra. any ideas? Quote Link to comment Share on other sites More sharing options...
ckp Posted December 29, 2018 Share Posted December 29, 2018 On 12/8/2018 at 10:01 PM, Minuteworld said: the screen is really tiny when i launch games from launchbox, even with all of these scripts and fullscreen ticked in citra. any ideas? run citra-qt.exe, set checkmark on menu View->Fullscreen, Then set menu View->Screen layout->Large screen. and as of LB 9.2 you also don't need any ahk script lines for hiding the mouse cursor either, since you can set that in the LB emulator settings for Citra. Quote Link to comment Share on other sites More sharing options...
Chris Kant Posted March 16, 2019 Share Posted March 16, 2019 does someone have another tip because it will not work for me. every time I start it it goes fullscreen but with the lowest graphic resolution and display settings. Quote Link to comment Share on other sites More sharing options...
TheNewClassics Posted May 30, 2019 Share Posted May 30, 2019 Does the exit citra script still work for everyone? After recent updates to both citra and LB, it's not closing properly for me. Quote Link to comment Share on other sites More sharing options...
Retro808 Posted May 30, 2019 Share Posted May 30, 2019 @TheNewClassics I responded in the AHK thread. See if that will help. Quote Link to comment Share on other sites More sharing options...
Peichan2 Posted August 12, 2019 Share Posted August 12, 2019 On 5/21/2018 at 1:11 AM, Lordmonkus said: Here's the full AHK script I have for Citra, loads it fullscreen, moves the cursor if it's showing and sets the Escape key to close it out properly. Sleep, 3000 SetKeyDelay, -1, 110 Send {F11} Return Sleep, 3000 SetKeyDelay, -1, 110 MouseMove, 0, 2160, 0, R $Esc:: { Process, Close, {{{StartupEXE}}} } Hi ! Each time i open a game with citra via launchbox, it open the cmd command ! and When i copy this in hotkey in emulator citra, there it put cittra AND CMD command in fullscreen do you know how to get off the cmd command ? Quote Link to comment Share on other sites More sharing options...
Peichan2 Posted August 16, 2019 Share Posted August 16, 2019 Anyone can help ? Quote Link to comment Share on other sites More sharing options...
earthprime Posted April 25, 2020 Share Posted April 25, 2020 I finally got this running, using tips in this thread, and modifying the hotkeyscript: 1) Run citra-qt.exe (also make sure the emulator path is pointing to this in LaunchBox) 2) Set a checkmark on menu View->Fullscreen 3) Set menu View->Screen layout->Large screen 4) Enter the following 'RunningAutoHotKey Script' in CItra's emulator config in Launchbox: Sleep, 1000 SetKeyDelay, -1, 110 Send {F11} Return 5) To create settings to smoothly exit Citra back to LaunchBox: In Launchbox, tools>options>Game Controllers>Mappings - assign 'Exit Game' to something like the START and SELECT button at the same time (Button 7 + Button 8). Launch a game from Launchbox, and it should load full-screen in CItra with no bars. Then press/hold START and SELECT and it should exit Citra and return you to Launchbox. Quote Link to comment Share on other sites More sharing options...
Cheetos Posted July 25, 2020 Share Posted July 25, 2020 (edited) LordMonkus' script worked for me. I removed the middle part though as Citra now has an option to hide mouse cursor on inactivity in its settings. I'm using the up-to-date build of Citra and LB at the time of this post. Edited July 25, 2020 by Cheetos Quote Link to comment Share on other sites More sharing options...
Spottyfriend Posted December 14, 2021 Share Posted December 14, 2021 On 8/12/2019 at 3:55 PM, Peichan2 said: Hi ! Each time i open a game with citra via launchbox, it open the cmd command ! and When i copy this in hotkey in emulator citra, there it put cittra AND CMD command in fullscreen do you know how to get off the cmd command ? This is my exact problem @Peichan2 - did you manage to solve it? Apologies on rezing an old thread but it seems this problem still exists. Quote Link to comment Share on other sites More sharing options...
Spottyfriend Posted December 14, 2021 Share Posted December 14, 2021 Okay I found that setting the emulator as NOT citra.exe but instead the citra-qt.exe and changing the settings in the config file (C:\Users\[your username]\AppData\Roaming\Citra\config) worked. 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.