Acrobat (reader): to open at a specific page numbe

2019-02-20 10:18发布

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...

2条回答
虎瘦雄心在
2楼-- · 2019-02-20 10:24

Use the command line switch /A:

Acrobat /A "page=<pagenum>" %1.pdf

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

查看更多
男人必须洒脱
3楼-- · 2019-02-20 10:35

use

Acrobat /A "page=3" "%1.pdf"

AFAIK the above works in Acrobat 7 and up (maybe even earlier version but not sure).

查看更多
登录 后发表回答