Killer Posted June 30, 2010 Posted June 30, 2010 Hi, Is there anyway to display text in command line environment rather than a popup dialog box?
Mat Posted July 1, 2010 Posted July 1, 2010 There a several ways to do it. The easiest way is too compile as a CUI (Console User Interface). You can do this by adding:#AutoIt3Wrapper_Change2CUI=yTo the top of the script and building through SciTE (assuming you have the full version). Or you can tick the "Console?" checkbox is Aut2exe.Either way you write to the console using the ConsoleWrite function, just make sure you end any strings you write to the console with @CRLF.The next way to do it is ridiculously more complex and uses the AllocConsole function which hasn't actually been released yet (I'm working on it ) but an example of can be found here. AutoIt Project Listing
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