TopGunBass Posted December 27, 2022 Share Posted December 27, 2022 I'm launching a game with LB/BB that requires you to hit the entre key or mouse click after the game initially launches to load the game. How can I allow this without Physically going to the mouse or keyboard. Can some script make this happen. Thanks Quote Link to comment Share on other sites More sharing options...
JoeViking245 Posted December 27, 2022 Share Posted December 27, 2022 7 hours ago, TopGunBass said: Can some script make this happen. You can create an AutoHotkey script and then set it as an Additional App for the game. The script will look something like: Sleep, 10000 Send {Enter} ..where "10000" = 10 seconds. You can increase or decrease this amount of 'delay' time before it 'presses Enter', depending on how long it takes for the game to load. See here on how to add the script as an Additional App. Quote Link to comment Share on other sites More sharing options...
TopGunBass Posted December 27, 2022 Author Share Posted December 27, 2022 6 hours ago, JoeViking245 said: You can create an AutoHotkey script and then set it as an Additional App for the game. The script will look something like: Sleep, 10000 Send {Enter} ..where "10000" = 10 seconds. You can increase or decrease this amount of 'delay' time before it 'presses Enter', depending on how long it takes for the game to load. See here on how to add the script as an Additional App. Thanks Joe this script worked for me. 1 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.