How to clean the console

I am trying to use komodo ide trial with a pure javacript.

It’s a cool software !

how can i clear the console pane??

is there a manual part for javascript users.

Sincerely
Rousseau Jeremie (France)

Thanks for reminding me of this. Currently there is no way to do this, but I just snuck it into Komodo 10. When it releases you’ll be able to use /clear to clear the console.

You could also use a userscript for now to manually clear it:

var w = document.getElementById('console-widget').contentWindow;
w.document.getElementById('output').innerHTML = '';

PERFECT i am testing on the komodo IDE 10 and that work very well !

thanks !