c.haslam Posted December 19, 2015 Posted December 19, 2015 Consider this script:Local $auPath = RegRead("HKLM\SOFTWARE\AutoIt v3\AutoIt", "InstallDir")&'\' RunWait('"'&$auPath&'Beta\AutoIt3.exe" "F:\AutoIt scripts\TraceCalls\test2.au3"') If @error Then MsgBox(0,'',@error)test2.au3 has ConsoleWrite calls in it, which work when test2.au3 is run from SciTE using Alt_F5. But they do not write to SciTE's output pane when I run the above script.from SciTE using Alt_F5.How can I get test2's stdout stuff to show in SCiTE? Spoiler CDebug Dumps values of variables including arrays and DLL structs, to a GUI, to the Console, and to the Clipboard
Developers Jos Posted December 19, 2015 Developers Posted December 19, 2015 (edited) Use Run() with the appropriate parameters so you can read the produced output with StdOutRead().in a subsequent loop which you show with ConsoleWrite().Helpfile should be your best friend. Jos Edited December 19, 2015 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
c.haslam Posted December 20, 2015 Author Posted December 20, 2015 Jos,Thanks.I guess that when I have retrieved the stdout stuff, I then use SCiTE Director's output command to write it to the output pane....chris Spoiler CDebug Dumps values of variables including arrays and DLL structs, to a GUI, to the Console, and to the Clipboard
c.haslam Posted December 20, 2015 Author Posted December 20, 2015 Jos,Your suggestion works AOK. I followed the example for StdOutRead()....chris Spoiler CDebug Dumps values of variables including arrays and DLL structs, to a GUI, to the Console, and to the Clipboard
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