Skip to main content
Inspiring
February 2, 2014
Answered

Clear the console via script?

  • February 2, 2014
  • 2 replies
  • 3347 views

Is there a way to clear the Extendscript Toolkit console from the script running?

Thanks!

This topic has been closed for replies.
Correct answer David Torno

I'm wondering if there is some way to clear the console from within a running script.

Ah, that would be a no. ExtendScript Toolkit is not a scriptable app.

2 replies

Participant
February 4, 2014

found few lines code about ame-scripting, in japanese

http://qiita.com/tags/extendscript

clearing console

var bt = new BridgeTalk();

bt.target = 'estoolkit-4.0';

bt.body = function(){

    app.clc();

    }.toSource()+"()";

bt.send(5);

thx, David Torno for yours getting started videos

Legend
February 4, 2014

found few lines code about ame-scripting, in japanese

http://qiita.com/tags/extendscript

clearing console

var bt = new BridgeTalk();

bt.target = 'estoolkit-4.0';

bt.body = function(){

    app.clc();

    }.toSource()+"()";

bt.send(5);

That's very interesting. Definitely outside the box thinking.

thx, David Torno for yours getting started videos

You're welcome.

Legend
February 3, 2014

Top right corner of the console window has a "Clear" option.

Inspiring
February 3, 2014

Hi,

I'm aware of the clear button you mention. I'm wondering if there is some way to clear the console from within a running script.

Thanks anyway!

David TornoCorrect answer
Legend
February 3, 2014

I'm wondering if there is some way to clear the console from within a running script.

Ah, that would be a no. ExtendScript Toolkit is not a scriptable app.