Copy link to clipboard
Copied
Hi.
Refering to my last post I have a following question.
I checked an InDesign document with the script. The check results were saved as a PDF. Is it possible to open this PDF document with Javascript in Acrobat (with a command at the end of the same script)?
Regards
Okay, I don't know if this topic is too trivial or a big secret. 🙂
I found very little information about it on the internet. The only hint I found was (adapted to my needs):
var myPDF = File(path + DocName + ".pdf");
myPDF.execute();
Anyway, this is what I wanted and it works. Maybe it will be helpful for another amateur in Java scripting.
Copy link to clipboard
Copied
Okay, I don't know if this topic is too trivial or a big secret. 🙂
I found very little information about it on the internet. The only hint I found was (adapted to my needs):
var myPDF = File(path + DocName + ".pdf");
myPDF.execute();
Anyway, this is what I wanted and it works. Maybe it will be helpful for another amateur in Java scripting.