What's wrong with the code below? This is just a bit so I can figure out to write to the file for each bar the EFS processes. As it is, it just rights for the last bar.
var f = new File("test.txt");
function preMain(){
}
function main(sTime, eTime){
f.open("wt");
f.writeln(close());
f.close();
return;
}
var f = new File("test.txt");
function preMain(){
}
function main(sTime, eTime){
f.open("wt");
f.writeln(close());
f.close();
return;
}
Comment