thefudgeishot Posted April 26, 2019 Posted April 26, 2019 I have 2 applications loading up upon boot of my system and one opens in fullscreen then the other cancels the full screen instead i want to let the one that closes my fullscreen open then my fullscreen one. sleep("10000") run("C:\root\to\app.exe")
thefudgeishot Posted April 26, 2019 Author Posted April 26, 2019 Thought I might add that the two application where in the windows start folder and I play to use the code to open the full screen application and to activate the code from the windows start folder
FrancescoDiMuro Posted April 27, 2019 Posted April 27, 2019 29 minutes ago, thefudgeishot said: Bump You have to wait one day before bumping your thread. Click here to see my signature: Spoiler ALWAYS GOOD TO READ: Forum Rules Forum Etiquette
Nine Posted April 27, 2019 Posted April 27, 2019 6 hours ago, thefudgeishot said: Bump You will need to give us more details, otherwise nobody will (or can) help you out. “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
thefudgeishot Posted April 27, 2019 Author Posted April 27, 2019 I have 2 application opening start up and one opens before the other so I want to use this script to delay the other launch
Exit Posted April 27, 2019 Posted April 27, 2019 Just use _SingleScript function. See here. Study the sample at the end of the UDF. App: Au3toCmd UDF: _SingleScript()
SirAlonne Posted April 27, 2019 Posted April 27, 2019 ; run the first application and get the pid for later use.. Local $appone = ShellExecute("app1.exe") ;check if the first app is running.. If ProcessExists($appone) Then Sleep(3000) ; wait whatever.. ShellExecute("app2.exe") ;then execute the second one EndIf
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now