Open pdf at specific bookmark

I'm trying to opne a pdf from command line at a specific bookmark..
Here is the command:
Acrord32.exe /A "nameddest=Getting Started" C:\\helpfile.pdf
if the namedest parameter contains a space its not working.. Otherwise i'm able to open the pdf at specific bookmark.

And to create named destinations?
I found this http://www.mindtheflex.com/?p=86 but my adobe hasn't the option "Destinations" (is it a pro version feature?)
When I build the document (in word) is there any change to give this named destinations?
Thank you

Similar Messages

  • Open PDF at specific bookmarks

    I have a newsletter posted on our website as PDF. Want HTML email to go out to subscribers containing intro paragraphs of each article, click the appropriate link to the web page, and then Open PDF at the text in the article. I have everything bookmarked in the PDF article but can't find info on how to control location of opening of document based on a condition; only (under Document Properties) the ability to ALWAYS open to any page, magnification, open w/ bookmarks panel open, etc. If not built into Acrobat, is there either a way to:
    pass a parameter to Acrobat to open to a specific page or bookmark?
    run a script to control this function?
    any another way to do this?
    I am using Acrobat 6.0 but willing to buy 8.0 if it has this needed capability.
    Thanks in advance,
    Larry Aaron
    Las Vegas, NV

    Found the answer to my question! The article linked below explained PDF Open Parameters. I created a named destination in my pdf and then added #nameddest=name of destination to the end of my URL.
    Thanks
    Bernd Alheit - 8:57am May 8, 07 PST (#1 of 2)
    Read this:
    http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf

  • Open PDF file with Bookmarks Showing

    Hi - forgive me if this is the wrong forum, but I can't find a topic called "how to use Acrobat"
    I need to create a PDF that will open in Acrobat Reader with the bookmarks displayed. The file will be distributed as a PDF and will not be associated with a web page.
    And, if everything was perfect, I'd like that file to be open at 100% instead of the current 150%.
    Is there a way to set this up?
    Karen

    Good morning.  I was researching this same issue and found a solution for Adobe 9 Standard.  I went into File > Properties > Inital View tab.  On the first line, it says "Navigation tab:"  I selected "Bookmarks Panel and Page" from the drop-down selection.  Save your file, of course.  Now, whenever someone opens this file, the bookmarks will show on the left side of the page and the document to the right. 

  • Open PDF in Specific Page

    Hi =)
    Suppose I have a big pdf, let's say, with 500 pages.
    I want to know if it can be opened in a specific page (this page can change). How can I do that? Is it possible?
    Besides that, if I'm looking for a specific word, is it possible to open the pdf in the page it first occurs and highlight it (the word)?
    (Note that I'm not talking about doing a search for a word once the pdf is opened.)
    Can someone help me?
    Thanks =)

    Hi =)
    Thank you for replying =)
    Ok, but is there a way of making it programmatically? (I did not explain myself very well in the first post)
    Suppose I have this pdf file in a website that allows the user to search for a word and gives all the results of his search through all pdf files in that site. I want the user to be able to click in the file he wants to see and automatically open the pdf in the page where the first matching word is.
    Is there a way?
    Thanks =)

  • READER XI - How to open PDF files with bookmark pane minimized (hidden)

    In Reader XI, cannot make the Bookmark Pane minimized (hidden) by default, and it opens for many PDF files that do not need it.  I want to locate a setting or option that allows opening of PDFs without the Bookmark Pane opening.

    "Google" is a search engine (website) and NOT (repeat: NOT) a PDF viewer. It can't and won't open PDFs in any real or imaginable way.
    Firefox added their own proprietary PDF viewer with version 20 - they're on 21 now. I'll be the first to admit "it sucks". You CAN'T fill in PDF forms with it, and you can't email them from the page like with Opera, Safari or Chrome (which use the reader plug-in still).
    Unfortunately, the ONLY option you have now that they've added it and killed the ability for the Reader plug-in to work with Firefox, is Tools>Options>Applications - select Portable Document Format(PDF) and choose "Use Adobe Reader (Default)". What that will do is FORCE Firefox to download the PDF instead of opening it in their terrible PDF viewer in the browser window.
    Or... use one of the other browsers I mentioned. They're all free.

  • Open pdf to specific page is working in XP but not Vista

    Hello,
    I have a Flash project consisting of multiple pages. On each page there is a link that will allow the user to open a pdf to a specific page to supplement the information contained in the Flash page.
    To do this I am attaching the following script to the button on each page:
    on (release) {
        getURL("My document.pdf#page=37");
    This works fine in Windows XP. I can navigate to different pages in Flash and open a different page in the pdf each time.
    It is not working for me in Vista. What it does in Vista is the first time you click on the button it will open the pdf to the specified page. The problem is that if you hit that button again or navigate to another page and click on that button to open another page in the pdf, it opens the pdf but only to the first page and ignores the specified page request.
    The project will be running from a cd only.
    Any help will be greatly appreciated.
    Thanks,
    Jeff

    Suggest you check the pages against the W3C Validator and eliminate the errors:
    http://validator.w3.org/
    e.g. the upper cheeks page has mangled code including three closing </head> tags (lines 31, 88 and 176) which IE and Chrome are probably barfing on.

  • Automate Batch Open PDFs

    Thank you to the people who responded to my previous post, but I am still having an issue trying to Action > Automate Batch with an Open PDF at specific size and Save for Web Close, both needed in the Action. Once the files are open, the Action works, but if I include the Open, the files are all named the same. Is there a way to open a PDF at specific size and not include a specific name???? Thanks in advance for suggestions.

    You provide little to no pertinent information.  Save your Action Set as a text file and post the text here so we can look at what you recorded into the Action.

  • Opening pdf-files at a specific page, bookmark or goal.

    Hi,
    I have a PDf-file which i can open when I click on a button. But, is it possible
    to open a specific bookmark(Page) on this button click.
    Here is the code to open a pdf file:
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    public class PdfOpen extends JFrame{
         private JButton button = null;
         public PdfOpen(){
              init();
              setVisible(true);
         private void init() {
              getContentPane().add(getButton(), BorderLayout.CENTER);
              pack();
         private JButton getButton(){
              if(button == null){
                   button = new JButton("View");
                   button.addActionListener(new ActionListener(){
                        public void actionPerformed(ActionEvent evt) {
                             ViewButtonActionPerformed(evt);
              return button;
         private void ViewButtonActionPerformed(ActionEvent evt) {
              open();
         private void open(){
              try {
                   Runtime r = Runtime.getRuntime();
                   Process p = r.exec("rundll32 url.dll,FileProtocolHandler C:\\Documents and Settings\\PMISXP0\\Desktop\\facsgs_33.pdf");
                   catch(Exception e){
                   System.out.println(e);
         public static void main(String args[]){
              PdfOpen pdfOpen = new PdfOpen();
    }Please help.
    Thanks

    Oups, my answer assumes that you were dispalying a PDF through http.
    Like said before by someone else, for command shell the command is different.
    See http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf#page=5
    Acrobat.exe /A "page=10=OpenActions" "C:\example.pdf"--
    http://www.rgagnon.com/howto.html

  • How do I open to a specific page or destination in a pdf file using Buddy API Xtra?

    Hello,
    I'm working with a CD ROM catalog that utilizes the Buddy API Xtra to open PDF files when a link is clicked. The client would like to be able to open to a specific page within a pdf file.
    I can open a pdf file using the Buddy API baOpenfile() function but I'm having trouble opening to a specific page when I add #page=4:
    baOpenfile("@\pdfs\Powder Cores\Magnetics_Powder_Core_Catalog_2011.pdf#page=4","normal")
    I've also tried working with the code below which seems to me like it should work... I didn't realize that the "open..." part of it was a function in Director.
    on mouseUp me
      pageNum = 4
      theApp = baShortFileName(baFindApp("pdf"))
      theDoc = baShortFileName("@\pdfs\Powder Cores\Magnetics_Powder_Core_Catalog_2011.pdf")
      theArgs = "/s /A page=" & string(pageNum)   & "&pagemode=bookmarks"
      -- (translates to "/A page=4" in this example)
      open theApp && theArgs && theDoc
    end
    Thoughts?
    Thank you in advance!

    Thank you Dee! This works perfect!
    It would be cool to know how to use bashell() for this.
    The help files give the following examples:
    Result = baShell( Operation, Filename, Args, WorkDir, State )
    ok = baShell( "open", "c:\windows\notepad.exe", "myfile.txt" , "", "normal" )
    ok = baShell( "edit", "myfile.htm" , "", "", "normal" )
    So I tried:
    on mouseUp me
      -- Close the program group
      tWindowList = baWindowList( "" , "pdf" , false )
      if tWindowList <> [] and count(tWindowList) > 0 then  baCloseWindow(tWindowList[1])
      pageNum = 4
      theApp = baFindApp("pdf")
      theDoc = _movie.path & "pdfs\Powder Cores\Magentics Powder Core Catalog.pdf"
      theArgs = "/A "&QUOTE&"page="&string(pageNum)&"=OpenActions"&QUOTE
      baShell( "open", theApp, theDoc , theArgs, "normal" )
    end
    It opens the pdf file without going to a specific page. Any thoughts as to why it wouldn't accept theArgs?
    Thanks again!

  • Open Reader at a specific bookmark

    I am trying to figure out a way to open the adobe reader at a specific bookmark. I found that it is possible to open to a specific page:
    /A page=10
    and to a named destination:
    /A nameddest=Some destination
    Is there a command line argument to open reader at a specific bookmark?
    Thanks.

    I don't understand why you say it makes no sense. Why would you not want to
    mark where you stopped reading in a PDF file so you can close it and, later,
    open it again to where you left off so you don't have to spend time figuring
    out where you were? This is kind of basic for reading books.
    I suppose if you only read short PDF's or just glance through them then it
    would make no sense. But when you're doing research and going back and forth
    between several PDF files, it makes a lot of sense.
    Page numbers have to be jotted down somewhere or remembered. It would be
    much handier to put the cursor on the spot you stopped reading and click on
    a button such as "Bookmark" or "Stopped Reading Here."
    I found no mention of "named destinations" in the Reader 8 help file, or am
    I being too literal? Is it called something else? Are these named
    destinations configurable by the end user or only the person who creates the
    file? If the end user, are they saved when the file is closed? In other
    words, can I, as the end user, mark my own persistent named destinations?

  • Cannot open pdf in Internet explorer with a specific site

    Hello,
    I'm running adobe reader 10.1.4 on XenApp 6.5 servers.
    On a specific site some users cannot open pdf in internet explorer. I need to delete there terminal server's profile to have it running fine again.
    My question is; wich file or folder can i delete in user's profile to erase adobe settings?
    Thanks a lot for your help and sorry for my english.

    Hello,
    I forgot to test this solution   but i've tried it this morning without success.

  • Open PDF in a specific location

    I want to open a PDF file from a chm file generated in RoboHELP in a specific location.

    Timothy,
    Plz read the thread on named destinations,
    Gloria Mc, "Linking to within a PDF using named destinations" #1, 24 Aug 2007 1:08 pm. This thread contains info on how to create named destinations in your PDF file, and then link to them with a hyperlink (or from a command line). Also various issues w/named destinations are discussed.
    You don't say what version of software you have; that would be helpful, as named destinations work in some versions and not others. Also operating system that this will be expected to work on would be good to know.
    In addition to the forum thread, read one of the documents "Parameters for Opening PDF Files." The one for 8.1 is located at http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf.
    If you have the correct version of Acrobat, the PDF is on a Web server, and the issues in the forum thread are addressed, you should be able to include a hyperlink to the PDF in your .chm file (which resides on someone's computer, not the Web server).
    HTH. --GMc

  • The way to open 3D pdf with specific model selection from url link

    I guess this feature is not supported, but let me ask one thing.
    I am looking for the way to open 3D pdf with specific model selection from url link.
    For example, if the following link is opened, is it possoble to open 3d.pdf with automatic selection of "abc" model in the model tree? 
    http://example.org/3d.pdf#model=abc
    If it can be done by javascript, it's really helpful.

    Impossible. There are only very limited command-line options for the Acrobat Family and you cannot change them.

  • My iPhone, iPad and G5 cant open PDF or Word attachments on emails generated from a specific PHP written system.

    I use iPhone, iPad and G5 receiving emails generated from a PHP written system hosted on 1and1.  I cant open PDF or Word attachments on any emails. The attachment's file names are displayed at the bottom of the email with no link.  No problem on Windows Outlook.   Is it me, 1and1 or the PHP system!? Does Apple OS handle email attachments differently to Windows?  Help!?

    Followed your instructions on my iPhone running 4.3.5 and my iPad which is running iOS 5 beta 4...  IT WORKS!
    Thanks a lot!

  • Parameters for opening PDF files in a browser

    I read some of the posts about making a text link from an html page to a specific location in a pdf document in the browser.  I set up the parameters, as I understand it, according to the document "Parameters for Opening PDF Files." The result from my test took me to the top of page 1, not to the bookmark on page 3 that I specified. See the link below. What is wrong with the parameters?
    http://www.tabardtheatre.org/YPASCfolder/2012/SummerYouthProgram2012.pdff#page=3&bookmark= anniejr
    You can also go to the website: http://www.tabardtheatre.org/audition.html and click on the text link (in blue).

    The PDF Open Parameters do not contain the option to link directly to a bookmark, as was mentioned, but I've developed a script that can add this functionality to your files. Have a look here, if you're interested: http://try67.blogspot.com/2011/06/acrobat-link-to-specific-bookmark-in.html

Maybe you are looking for

  • PS Report : Strange behaviour S_ALR_87013542  and CJI5

    The bottom line total figure In CJI5 ("Val/CO Area") for All PO's assigned to a WBS and S_ALR_87013542 ("Commitments") on a WBS match exactly - in same period. But strangely the bottom line total figure In CJI5 ("Plan val. Currency" )  DO NOT MATCH w

  • Can't create a new user on ePrint center for four days now

    I've been trying to create a new ePrint user since Saturday when I set up my printer. I think I've tried it 15 times now. All I ever get when submitting the form at: https://h30495.www3.hp.com/user_create is: "Oops! Something just went wrong on our s

  • Can I clone to an external that has files on it, use it as a startup disk

    I have an external firewire drive but I didn't partition it before I started Time Machine backups on it.  I now need to clone my internal drive to the external and use it as a startup disk.  I'm afraid it won't work if there are other files (LOTS) al

  • Long render time with premiere pro CS5 lately,  help!

    lately my premiere pro CS5 render extremely slow i have a 6GB ram 64bit windows 7 is it normal to render a 10 minutes quicktime/h264 codec in 5 hours? please take a note that this happened recently, so i think my pc spec. should not be the problem th

  • Unable to download os x yosemite "error has occurred"

    I'm running an OS X Lion 10.7.5, half way to the download this message appear: "an error has occurred" and I have no idea where to fix it and what to do. HELP!!!