Ask a Question related to Adobe Acrobat SDK, Design and Development.
-
Leonardo_Ferreira@adobeforums.com #1
Open a certain page of a PDF file
Leonardo_Ferreira@adobeforums.com Guest
-
open swf file to specific page
how can a do that with a URL or a command line? thanks, M. Lee -
Duplicate files open anytime I open a file
When I open an Illistratro file, two of the same file opens everytime. I browsed everyone of the subjects suggesting anything with the word... -
Open PDF file to a Specific Page
It seems like the solution you are looking for is AcosHelp, developed by me. For more information see <http://www.acoshelp.com>. Peter Ring... -
Open file, make changes, save file, close, re-open, file contents not changed
I've now run into this several times and it's completely destroyed all of my confidence in Ilustrator CS on Mac. I'm hoping someone can confirm that... -
Can't open large file (web page)
Hey everyone: I'm so stuck! I built a website in Publisher; it's 296MB; I can't get it to open at all. I've tried a million times; At first I... -
Leonardo_Ferreira@adobeforums.com #2
Open a certain page of a PDF file
Hello everyone,
im developing a app with c# and i want to allow the user to view the "main" file... but not only this... if in the app he choose to see the record of "John Doe" when he clicks the TAKE A LOOK button i want to open the file in the page of "JOHN DOE"...
details: i know the name of the page that "JOHN DOE" is...
-the reader that will be avalible in the machines is the reader 8.0
-im developing in VS using C#
in our ilustrative case here our "JOHN DOE" is in page 105 but this:
Process.Start(string.Format(@"C:\FPC\2.2.0\doc\pro g.pdf"), "page=105");
is not working... its opening the file always in page 1... its like the reader is ignoring the second part...
Leonardo_Ferreira@adobeforums.com Guest
-
Leonard_Rosenthol@adobeforums.com #3
Re: Open a certain page of a PDF file
Please read the documentation about open parameters...
Leonard_Rosenthol@adobeforums.com Guest
-
Leonardo_Ferreira@adobeforums.com #4
Re: Open a certain page of a PDF file
can u be a little more specific? i already did it... at least i think so...
this is what i read <http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf>
Leonardo_Ferreira@adobeforums.com Guest
-
Leonard_Rosenthol@adobeforums.com #5
Re: Open a certain page of a PDF file
That's the correct document.
I don't know anything about "process.start()", so I can't verify your parameters there. Try those same parameters with other, documented, methods.
Leonard_Rosenthol@adobeforums.com Guest
-
Leonardo_Ferreira@adobeforums.com #6
Re: Open a certain page of a PDF file
got it: if anyone want to know the answer:
string acrobatReader = @"C:\Arquivos de programas\Adobe\Acrobat 8.0\Acrobat\Acrobat.exe";
string file = @"C:\FPC\2.2.0\doc\prog.pdf";
string parameters = "/A page=4";
ProcessStartInfo info = new ProcessStartInfo(acrobatReader, parameters + " " + file);
Process.Start(info);
Leonardo_Ferreira@adobeforums.com Guest



Reply With Quote

