Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Open PDF-File with Javascript

Participant ,
Jan 06, 2025 Jan 06, 2025

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

TOPICS
Scripting
182
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Participant , Jan 07, 2025 Jan 07, 2025

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.

Translate
Participant ,
Jan 07, 2025 Jan 07, 2025
LATEST

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.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines