Copy link to clipboard
Copied
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!
Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
and you can just copy/paste the text
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
you could assign a shortcut for the jsfl solution.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now