Page 1 of 1

Clear Console

Posted: Wed Oct 21, 2015 10:37 pm
by ernpchan
Is it possible to clear the ASP Lua console?

Re: Clear Console

Posted: Thu Oct 22, 2015 12:17 am
by synthsin75
Just close it. It will be reset the next time it is invoked. Reloading scripts (ctrl+alt+shift+L) closes it too.

Re: Clear Console

Posted: Fri Jul 08, 2016 5:18 pm
by rylleman
But if you would like to clear it without closing? Is it possible?
Making a script which gives info in the console. Would like to present the data clean without all old info there.

Re: Clear Console

Posted: Fri Jul 08, 2016 6:03 pm
by synthsin75
The console displays a limited number of lines, so you could probably print enough new lines "\n" to have your new output be the only thing showing. It would just have a lot of empty space above it, but the console should scroll down to the last output, so it shouldn't effect the end user.

Re: Clear Console

Posted: Wed Jul 20, 2016 10:09 am
by rylleman
Thank's! It's a good workaround.