I want to know, if is possible to clear, with a code, the window debugger ?
Because, when i have many variables in a loop, i don't have the time to read all

Code: Select all
Debug "Happy New Year!"
Debug "Bullfrogs rule the world"
Debug "Stand by for a cleared debug window in one second..."
Debug ""
Delay(1000)
ClearDebugWindow()
Code: Select all
Debug "Happy New Year!"
Debug "Bullfrogs rule the world"
Debug "Stand by for a cleared debug window in one second..."
Debug ""
Delay(1000)
Debug ClearDebugWindow()
Code: Select all
Happy New Year!
Bullfrogs rule the world
Stand by for a cleared debug window in one second...
0