Chinasmoker Posted February 13, 2007 Posted February 13, 2007 3.22 sta ver help file :AutoIt specific command Line SwitchesForm1: AutoIt3.exe [/ErrorStdOut] [/AutoIt3ExecuteScript] file [params ...] Execute an AutoIt3 Script File/ErrorStdOut Allows to redirect fatal error to StdOut which can be captured by an application as Scite editor. This switch can be used with a compiled script. To execute a standard AutoIt Script File 'myscript.au3', use the command:'AutoIt3.exe myscript.au3' Form2: Compiled.exe [/ErrorStdOut] [params ...] Execute an compiled AutoIt3 Script File produced with Aut2Exe.Form3: Compiled.exe [/ErrorStdOut] [/AutoIt3ExecuteScript file] [params ...] Execute another script file from a compiled AutoIt3 Script File. Then you don't need to fileinstall another copy of AutoIT3.exe in your compiled file.Form4: AutoIt3.exe [/ErrorStdOut] /AutoIt3ExecuteLine "command line" Execute one line of code.To execute a single line of code, use the command:Run(@AutoItExe & ' /AutoIt3ExecuteLine "MsgBox(0, ''Hello World!'', ''Hi!'')"')The tray icon will not be displayed when using /AutoIt3ExecuteLineNOTE: Correct usage of single- and double- quotation marks is important, even double single. what mean ? Errorstdout? Error standard outport?> One is never too old to learn
MHz Posted February 13, 2007 Posted February 13, 2007 Error Standard Output. When the /ErrorStdOut switch is used then information is piped in a stream to another listening process.
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