I have an application that manages multiple magazine PDFs on the hard drive. I need to open the PDF files into a specific page. I am able to call vbscript from my own software so I am looking for some vbscript snippet to open a PDF with a specific page loaded. I am a mac developer doing cross platform software, windows is not my standard bread and butter.
From the Adobe docs, I checked that using system calls to open a URL like:
works fine but trying to use similar URL with the dummy file protocol like:
file://path/to/mypdf#page=2
does not work. After figuring that, I decided that I should try some vbscript call to some COM or ActiveX or whatever they use these days on windows but I don't know how to do it.
Thanks for any help.