Give New File a name with Script
Hello,
I have a simple script that creates a new document and a couple of Layers. How would I add in code to be able to give the new document a name other than "Untitled-1"?
Thank you!
var myDocument = app.documents.add();
// PROD Layer
var prodLayer = myDocument.layers.add();
prodLayer.name = "PROD";
// SPEC Layer
var proofLayer = myDocument.layers.add();
proofLayer.name = "PROOF";
