Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

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

New Here ,
Sep 26, 2024 Sep 26, 2024

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!

TOPICS
Code , How to , Missing feature , Other , Product issue
172
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 26, 2024 Sep 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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 26, 2024 Sep 26, 2024

and you can just copy/paste the text

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 26, 2024 Sep 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.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 26, 2024 Sep 26, 2024
LATEST

you could assign a shortcut for the jsfl solution.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines