cypher175 Posted January 31, 2012 Share Posted January 31, 2012 I have a lil command-line app that i am wanting to send multiple simultaneous parameters to, is there anyway with autoit to accomplish this..? like if I have all the parameters to be sent to the app in an array, how can I fire them all off at once..? Link to comment Share on other sites More sharing options...
PPCC Posted January 31, 2012 Share Posted January 31, 2012 In my view, you can use the same as in batch file (DOS): start command1 start command2 ... Link to comment Share on other sites More sharing options...
cypher175 Posted January 31, 2012 Author Share Posted January 31, 2012 that runs consecutively doesn't it? I am wanting to run/send all commands all at once simultaneously!!! Is Autoit capable of this type of thing? Link to comment Share on other sites More sharing options...
PPCC Posted February 1, 2012 Share Posted February 1, 2012 (edited) command1 and command2 will run parallel if the above batch file run. Wait for other solution directly in AutoIt. Edited February 1, 2012 by PPCC Link to comment Share on other sites More sharing options...
BrewManNH Posted February 1, 2012 Share Posted February 1, 2012 AutoIt is single threaded, you can only run one function at a time in it. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
PPCC Posted February 1, 2012 Share Posted February 1, 2012 So, as BrewManNH said, could we run multi script from a batch file as follows? Yes! start script1.au3 start script2.exe ... Link to comment Share on other sites More sharing options...
Juvigy Posted February 1, 2012 Share Posted February 1, 2012 As i understand he wants to send several parameters to autoit program - that is easy -search for "command line" in the help file Link to comment Share on other sites More sharing options...
BrewManNH Posted February 1, 2012 Share Posted February 1, 2012 As i understand he wants to send several parameters to autoit program - that is easy -search for "command line" in the help fileHe stated that he wants all the parameters to run at the same time, not that he wants to be able to send them to his script all at once.I am wanting to run/send all commands all at once simultaneously!!! If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
Blue_Drache Posted February 1, 2012 Share Posted February 1, 2012 Short answer: No. Long answer: Nooooooooooooooooooooooooooooooooooooooo PPCC 1 Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache Link to comment Share on other sites More sharing options...
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