I am not able to find the formulaoutput file on my drive anywhere. I've searched for formulaoutput.log, .txt, etc.
also, since I could not find that file, I added code to just write to a file - but I cant find that anywhere on my drive either ???
relevant code (slightly modified):
var myfile = new File ("coolfilename.txt");
var veryimportantstring = "Indeed very importat stuff";
myfile.open("at");
myfile.writeln( veryimportantstring );
myfile.close();
but no file, no log file, not able to copy from output window...
also, since I could not find that file, I added code to just write to a file - but I cant find that anywhere on my drive either ???
relevant code (slightly modified):
var myfile = new File ("coolfilename.txt");
var veryimportantstring = "Indeed very importat stuff";
myfile.open("at");
myfile.writeln( veryimportantstring );
myfile.close();
but no file, no log file, not able to copy from output window...
Comment