Skip to main content
Participant
September 26, 2024
Question

Animate output window: is content written also to a text file?

  • September 26, 2024
  • 3 replies
  • 189 views

Hello,

I am sure Animate write contents shown in the iutput window in a text file somewhere in the system.

Anyaone knows the location of this file?

I'd rather read it with another debugger.

Thank you!

This topic has been closed for replies.

3 replies

Participant
September 26, 2024

Thank you for your replies.

Both solutions require an action, while I would like to read in real time the text file written by the output window.

kglad
Community Expert
Community Expert
September 26, 2024

you could assign a shortcut for the jsfl solution.

kglad
Community Expert
Community Expert
September 26, 2024

and you can just copy/paste the text

JoãoCésar17023019
Community Expert
Community Expert
September 26, 2024

Hi.

 

I'm not sure about the location, but you can use JSFL to save the Output panel's content as a file. Something like this:

var dom = fl.getDocumentDOM();
var domPath = dom.path.replace(dom.path.split("/").pop(), "");
var savePath = FLfile.platformPathToURI(domPath + "output.txt");

fl.outputPanel.save(savePath, true);


Regards,
JC