Writing text file from ae (Meet writes one line)
If I run the code from the extended toolkit, it works well,
But if I run the code through the after effect does not work well (writes everything on one line instead of two lines)
What should I do in order that through the after effects it will work properly?
thenks ![]()
var a=3;
var c=[10,16,7];
var myfile =new File("~/desktop/test1.txt")
myfile.open("w");
myfile.write(a+"\n"+c);
myfile.close();
win.close();
