Jump to content
LaunchBox Community Forums

Way to delay application launch with additional app?


FoxyMonty

Recommended Posts

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 :D

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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

 

Link to comment
Share on other sites

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.

 

Link to comment
Share on other sites

  • faeran locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...