From: Naresh Pai on
Hi,
I am looking for a way to open a pdf document on a specific page. I tried using:

open('doc.pdf');

which opens the pdf file on page 1. However, I am looking to direct the user to a specific page on a pdf document.

Any thoughts ?

Naresh
From: Naresh Pai on
"Naresh Pai" <npai(a)uark.edu> wrote in message <hpt1r1$nfh$1(a)fred.mathworks.com>...
> Hi,
> I am looking for a way to open a pdf document on a specific page. I tried using:
>
> open('doc.pdf');
>
> which opens the pdf file on page 1. However, I am looking to direct the user to a specific page on a pdf document.
>
> Any thoughts ?
>
> Naresh

I found the solution. For opening page 2:

system('C:\"Program Files"\Adobe\"Reader 9.0"\Reader\AcroRd32.exe /A page=2 "doc.pdf"');

Here is where I found the solution: http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf