FoxyMonty Posted December 15, 2016 Share Posted December 15, 2016 I have an application I want to launch through launchbox with an additional application set to launch beforehand. Is there a way to delay the application by so many seconds to allow the additional application to load up and be ready first?? I hope that makes sense Quote Link to comment Share on other sites More sharing options...
SentaiBrad Posted December 16, 2016 Share Posted December 16, 2016 It does make sense, but it doesn't currently exist. There has been talk of adding more control of when Additional Application stuff automatically runs though, but there isn't some sort of time frame on it. The best thing to do would be to search up the additional apps ticket on BitBucket, voting on it and adding your own notes to the ticket as well. Quote Link to comment Share on other sites More sharing options...
ckp Posted December 16, 2016 Share Posted December 16, 2016 you could probably do this if you use a batch file or script as your additional app, so that the batch file or script will launch your actual app (like if it's batch, use: start <your app path and file name> ), sleep xx seconds, then exit. batch file might look something like (replace 10 if you want to wait different number of seconds): @echo off start c:\folder\yourapp\app.exe timeout 10 Quote Link to comment Share on other sites More sharing options...
SentaiBrad Posted December 16, 2016 Share Posted December 16, 2016 That's a pretty easy workaround. Quote Link to comment Share on other sites More sharing options...
ckp Posted December 16, 2016 Share Posted December 16, 2016 yeah. and i would use autohotkey instead since there would be no command shell window popup and it's cleaner and nice. you could even get fancy and check something before exiting, like if some process or window name exists, rather than rely on a sleep timer. 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.