Thom
I need to link from an Acrobat pdf file to internal pages on a pdf file on the web. In other words, do from a pdf file that which is straightforward if linking from an HTML page to a pdf file using page=pagenum.
http://example.org/doc.pdf#page=3 in the Acrobat SDK
I want to do this from Acrobat javascript.
From the Console, I first tried:
this.getURL ("http://xxx.com.test.pdf")
This command found the test.pdf file and appended it to the currently open Acrobat.
But need the file opened in a separate window.
So, first I need to just open a remote pdf file.
Then, I need to go to a specific page - i.e., go here in to page 3:
this.getURL ("http://xxx.com.test.pd#page=3")
Alternatively, after opening the pdf file, I would like to execute a search:
search.query ("A-0055")
Which would search for that content.
Can you help me or point me in the right direction.
app.launchURL ("http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_developer_guide.pdf",true)
This works in the debugger and opens the file in the url.
Next is how to navigate to a particular page in the opened file.
I have seen previous questions on this topic - but no answers, not even an answer that this cannot be done in javascript.
Thanks