I am running a Windows batch file to convert a document to PDFand on the last line of the batch file I have:
Acrobat "%1.pdf"
This opens the produced PDFfile just fine but I also wish to be able to open the PDFfile at some specific page of the document.
So how to extend the command that I am using above to force the PDFfile to open at a desired page number?
Thanks a lot…
Use the command line switch /A:
Replace with whatever page you like to be displayed. For additional open parameters, please refer to Adobe’s partner documentation:
http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf
Good luck!
Living