NagakiriHidechi Posted December 1, 2020 Share Posted December 1, 2020 Is there a way to run an ahk script (or run an application) when BigBox itself opens and closes (just like you can with a game)? Quote Link to comment Share on other sites More sharing options...
JoeViking245 Posted December 1, 2020 Share Posted December 1, 2020 Not from within LaunchBox/BigBox itself. Your best bet is to open BB using a batch file (or AHK script if you'd prefer). Example batch file @echo off start "" "F:\path_to_run-before_program\my_OPEN_program.exe" timeout 3 cd "F:\LaunchBox\core" start /w "" BigBox.exe start "" "F:\path_to_run-after_program\my_CLOSE_program.exe" Load/Run the 1st program Pause (timeout) for 3 seconds to give it a chance to completely load. Start BigBox. the "/w" tells it to wait until BigBox exits before continuing. Once BB exits.... Load/Run the 2nd program. 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.