Question
JXS: Create folder
I made a simple javascript to create a folder. Because I cannot find any more information on the web and in the manuals, I post the script here.
var folderRef = new Folder("D:\\TestJS");
folderRef.create();
When I execute this form the ExtendScript Toolkit CS4 (3.0.0.22), I get the error "Cannot execute script in target engine 'main'! (Target engine 'main' is busy!)". There are no other scripts running.
Probably there is something wrong in this script, but I cannot find the error.
var folderRef = new Folder("D:\\TestJS");
folderRef.create();
When I execute this form the ExtendScript Toolkit CS4 (3.0.0.22), I get the error "Cannot execute script in target engine 'main'! (Target engine 'main' is busy!)". There are no other scripts running.
Probably there is something wrong in this script, but I cannot find the error.