Copy link to clipboard
Copied
run.txt file not created in c drive.???
var myFile=new File("/C/run.txt");
var content="ABCDEF";
myFile.write(content);
maybe
var myFile=new File("C:\\run.txt");
?
Also make sure that the AE preference "Allow scripts to write files and access network" is enabled.
Copy link to clipboard
Copied
maybe
var myFile=new File("C:\\run.txt");
?
Also make sure that the AE preference "Allow scripts to write files and access network" is enabled.
Copy link to clipboard
Copied
Hi mathias
I need little help on render queue thing. Pop up an alert or run some instructions, when an item is rendered instantly.
Like below example
var numItems=app.project.renderQueue.numItems;
for(var i=1;i=numItems;i++){
var currentRenderStatus=app.project.renderQueue.item(i).status;
if(currentRenderStatus==RQItemStatus.DONE){
alert("Item"+i+"Done");
}
}
Thanks in advance
Copy link to clipboard
Copied