I want to write text to the console / Windows command line in AutoIt. I ran a test script as shown below:
Func Test()
ConsoleWrite("Hello")
EndFunc
Test()
I saved the script as test.au3. When I run it, it does not print to the console. I checked ConsoleWrite(); it should print to the DOS console if it is script compiled as a console application.
I compiled a script using Aut2Exe. It still does not print to the console. How to write in the console in AutoIt?
source
share