Question
Get full path to .ps file from dialogue app.activeDocument.pprint()
Hello,
in my script, I print an indesign file to a ps file in the location I set in the print dialog.
#targetengine "session"
...
with(doc.printPreferences){
printer=Printer.postscriptFile;
printFile = (printPsPath + fileOnly + ".ps");
}
doc.print();
...
Is it possible to get this place back into the script? I'd like to edit this file.
Thanks in advance.
