AlphaFeta Posted yesterday at 07:59 AM Posted yesterday at 07:59 AM Hello, I have been trying to get a (non-emulated) game to both start up in Fullscreen (F11) and close the menu bar (F1) on startup automatically with an additional script - so far what I have been using is #NoEnv Sleep, 3000 SetKeyDelay, -1, 110 Send {F11}{F1} Return However this only ever seems to input F11 for fullscreen while leaving the menu bar up. Is there something I am missing in order to get both key presses to register? Quote
JoeViking245 Posted yesterday at 12:22 PM Posted yesterday at 12:22 PM 4 hours ago, AlphaFeta said: However this only ever seems to input F11 for fullscreen while leaving the menu bar up. Is there something I am missing in order to get both key presses to register? Assuming they work when you do the manually, try separating out the Sends. Sleep, 3000 SetKeyDelay, -1, 110 Send {F11} Send {F1} Return Quote
AlphaFeta Posted 8 hours ago Author Posted 8 hours ago (edited) 19 hours ago, JoeViking245 said: Assuming they work when you do the manually, try separating out the Sends. Sleep, 3000 SetKeyDelay, -1, 110 Send {F11} Send {F1} Return Unfortunately I tried that too and it also didnt work Edited 8 hours ago by AlphaFeta Messed up quote Quote
JoeViking245 Posted 3 hours ago Posted 3 hours ago 4 hours ago, AlphaFeta said: Unfortunately I tried that too and it also didnt work It may be sending them consecutively too fast. Try adding a delay between the 2 key presses. Sleep, 3000 SetKeyDelay, -1, 110 Send {F11} Sleep, 1000 Send {F1} Return 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.