one path back from originalDocPath scripting
I'm using scripts to save PDFs in various formats in various folders.
var PRINT = Folder(originalDocPath + "/Print");
if (!PRINT.exists) {
PRINT.create();
}
var _pdfFileName = PRINT.fsName + "/" + originalDocName + "_PRINT.pdf";
var dest = Folder(PRINT);My Folder structure looks like this.
\
Currently I have to have the document saved in the enclosing folder (5000_ABC_Example) but I want to have it in the Artwork folder.
Basically how do I direct to:
