I am new to AutoIT and would like to know if there is any way of getting the text from the output. Please refer the screenshot for more clarification.
I am new to AutoIT and would like to know if there is any way of getting the text from the output. Please refer the screenshot for more clarification.
Where that screenshot comes from? Is that a separate application, or a command line (console)? You mentioned "from the output", so StdoutRead might be the solution (without knowing more details).
** UPDATE
Based on the answer - this is a separate app, which seems to write to standard output. You might try the following
If you want to process the text whenever it appears, process it inside the while loop. In that case keep in mind, some text might be even being printed, means they might be incomplete.
** UPDATE 2 Seems you would like to interact with your application not just read from there (according to your comment below). Using Send() function is not the best choice as that sends the text to the window which is in the front. You have to start the application with Run() which gives you its process ID, then use StdinWrite() and StdoutRead() to send/receive texts. Here is a bare example returning your domain and username:
