Det Posted June 26, 2009 Posted June 26, 2009 Hi all.How to obtain the parameters, defined in the startup scriptexample c:\test.exe /a /b /c
Mat Posted June 26, 2009 Posted June 26, 2009 $cmdLine[n] where n is the param number alternatively use $cmdLineRaw. eg: Script.exe \a \b \c $cmdLineRaw = "\a \b \c" $cmdLine[1] = "\a" $cmdLine[2] = "\b" $cmdLine[3] = "\c" its all in the helpfile under using autoit > Command line Parameters. MDiesel AutoIt Project Listing
Det Posted June 26, 2009 Author Posted June 26, 2009 Very-very thanks, were not immediately noticed in the docs
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