Copy link to clipboard
Copied
Hello Adobe Community
I have attached a file to a pdf document (kmz file).
I have saved it so that the pdf opens with the attachments navigation tab open by default, that attachment is visible in the attachments pane.
I would like to create a link on a page that links to that particular attachment in the pdf.
The idea being that when you click on the link on the page it will open the attachment in Google Earth.
Thanks
Paul
Copy link to clipboard
Copied
This requires using a script, since the attached file is not a PDF. You can use the following code:
this.exportDataObject({cName: "MyFile.kmz", nLaunch: 2});
(replace MyFile with the actual file name, of course)
Copy link to clipboard
Copied
This requires using a script, since the attached file is not a PDF. You can use the following code:
this.exportDataObject({cName: "MyFile.kmz", nLaunch: 2});
(replace MyFile with the actual file name, of course)
Copy link to clipboard
Copied
Hello @try67
Thank you very much for the prompt response and most importantly the solution!
This works 100% and was exactly what I was looking for.
Thanks
Paul