How to hyperlink from a pdf file to a specific page in a second pdf file

I would like to setup a set of pdf documents, on the hard disk of a PC or Mac, that can be open in acrobat pro and have hyperlinks that jump to, and open in a new window, in acrobat pro, to a given page of a second document in the set.
It seems to me to be something that everyone would want to do and should be simple enough.
But I seem to be missing something.
I had partial success a few years ago using what I recall are the following general points:
Create files in word,
Use absolute address
Use / not \,
Converting the spaces in the address to %20
Set the hyperlink base to “file:///T:/PdfDocumentsFolder/”
Add location with  #page=3 to end of file name, 
Convert to pdf with acrobat pdfmaker
Open pdf with web browser into reader.(could not get it to work on mac with OS 9) by Checking Edit-Preferences-Internet-Web Browser Options-Display PDF in browser
This will allow the pdf to open to a given page, but only in the acrobat reader under MS IE, Not in Acrobat pro and not on a mac even in the reader.
Now I have a large (500) PDF documents with a very large number of comments and a key user switched to a Mac and can not automatically go to the page and would lose or have to transfer comments that have been made on the pdfs.
I have looked at and tried a number of things that have not worked:
Change all the links by hand:
Tools-Advanced Editing-Link
Action-Open file
I can not see where when Inserting a link by hand one can place the page number
Action-Open weblink
Close, This can open a file,
If Edit-Preferences-Internet-Web Browser Options-Display PDF is checked it will jump to a page
But if it is not checked it will open in acrobat pro and not to the page
Does not seem to work on a mac
Looked at acrobat javascript
Don’t seem to see any method that would allow a page number
Under open document
Open under a URL
app.launchURL("Document.pdf", true);
seems to error if a #page=2 is add to file name
Looked at security
Don’t seem to see that there is anything in the preferences that can be set to enable the jump to page action
Looked at privileged and non-privileged and did not see how that would help
Looked at adding disclosed=true;
function Disclose()
this.disclosed = true;
Looked at Portfolios to see if some kind of group of documents would allow the jumps but could not find a solution.
I have not looked at bookmarks to see if I bookmarked every page “Pagexxx” and then jump to the bookmark would get around the problem.
So I am not getting the right combination and could use some help
Thanks
John
Current Systems in use:
Windows XP
Acrobat 9 pro version 9.4.4
Or
Mac OS 10 Lion version 10.7.4
Acrobat 9 pro version 9.5.1
(note I have limited understanding of Mac’s)
P.S.
In a similar vain within the word source documents I was able to get a hyperlinks to make the same kind of jump to a page using a VBA macro with the following call:
Shell "C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe  /A page=" & iPageNum & "&Zoom=125=OpenActions """ & sHyperlinkBase & sHyperlinkAddress & """", vbNormalFocus
After parsing the hyperlink and to get file name and  the page number
So I know acrobat pro can be called as an application to jump to a page

Thanks for that information.
I did not see that the “go to view link” could change documents. I thought it was only within a document.
I manually added two “go to view links” and that seems to work on both mac and pc computers.
That brings up two questions.
For old files can a acrobat java script batch file be setup to read the hyperlinks in a pdf document  and replace them with a “go to view link” style?
Can one place a “go to view link” style in a word document and then have the adobe convert to acrobat process it into the pdf format with the rest of the document? (or set up the converter to make word hyperlinks change to pdf “go to view links”?

Similar Messages

  • How do I link a reference point in one PDF to a specific page in a different PDF? I want it to open link in a new window AT the specific page.

    I have a paper with multiple reference points that I need to link to 3 other pdfs. Each time I create a link in the master PDF, I need to open a file in a new window and point to a specific page in the other pdf. I cannot get it to work.

    Hmmmm, just tried that and used the magnify glass to capture the specific page in the second pdf, but when I tried the link, it doesn't open a new window, it sits within the original pdf and I can't go back to the page I need to. What am I missing/
    [email signature removed]

  • Open PDF file to a specific page

    I need to have an HTML link open a PDF file at a specific page. Are there any commands that can be added to the HTML link that the Reader can use to do this specific action? I have many name index files where the names are linked to the spcific page. I currently have all pages as individual JPG files. I want to combine all these JPG files as a single PDF file. But how do I access those individual pages? Thanks.

    THANK YOU !! The article states that the described method does not work using local hard drive destinations. I neglected to mention that using local hard drive destinations is exactly what I need. But the article also states this applies to Reader 7.0. I am using 8.1.2 so I decided to try it and see what happens. The method does indeed work in 8.1.2 !! Again, THANK YOU !!

  • How to create a table of contents (TOC) linking to specific pages of different (multiple) PDFs

    Hi All,
    I would like to create clickable Table of Contents (TOC) that can lead to a sub clickable TOC that would lead to a specific page of different PDFs within a folder.
    Is that possible?
    Secondly, is is possible to create a search box that upon typing a specific word (not related to text within the PDFs), that word to be linked to a specific page of a particular PDF out of many within a folder?
    To make it more clear, I have a database of specifications of equipment and drawings of a building, all in multiple PDF files. I would like to be able to unify all those PDFs and if I type the room number of the building to be presented with a menu of choces pointing to services assosiated with that room, being elctrical power drawings, lighting drawings or drawings of Air Conditioning and Ducting associated with that room. So I type a room number, then I get a menu of Power, Lights, Fire Alarm, or Ducting all associated with that room, then if I click Fire Alarm to be directed straight to the drawing within a PDF related to that room.
    Thanks

    I would say: Try and Error. Create a copy of your document and unmark in the copied document in the document inspector all boxes for the TOC. Then mark them again. Maybe you should also delete the paragraph styles and mark them again. If that doesn't work, try to copy the complete text of your document to a new created one. Maybe that works.
    Good luck!
    P.S.: If that doesn't work look here. Maybe this helps.

  • "How to forward from a struts form to a login page?"or "how to connect form

    Can Any boby please let me know
    "How to forward from a struts form to a login page?"or "how to connect form to login session id"?
    Thanks
    Shailajakrishna

    I believe I can not use a
    request.sendRedirectURL("....") in which I would
    encode all my parameters, because:Righto. This is a bit tricky.
    Basically, you have two options, and both of those are a little nasty.
    1) You could use and intermediate JSP page. Just dispatch you request to that page, use the attributes to construct a form with hidden fields, and use Javascript to POST that form to your intended URL on the document's BODY onload event. Would work, but wouldn't be pretty and requires you to use JSPs and Javascript. Still an idea.
    2) This is something that I wouldn't recommend. Open a socket to the URL you you want to post your data. Manually construct a HTTP POST request, encoding your parameters into the headers. Read and parse the response & modify your HttpServletResponse object accordingly.
    Take a look at i.e. http://javaalmanac.com/egs/java.net/PostSocket.html?l=new for some pointers.
    I'd go with item #1.
    For my own edification, I'd be also interested in
    knowing why such a function does not exist in the
    current httpServletRequest api.I suppose it's a little out of scope. Servlets were ment to interoperate inside one container, not across domains and different implementations.
    I'm guessing I must be missing something fundamentals
    maybe?No, you're not.
    .P.

  • How to print specific pages out of a book file

    I've searched around but I cannot find any way of printing specific pages out of a book file. Has anyone got any ideas? I have a 100 page book file with 20 files, and doing print outs of sections is a nightmare. I want to be able to print page 5 out of file A and page 6 out of file B together so I can duplex them. I've tried scripting this but I can't seem to set the page range of the print preferences of the book file.

    [Jongware] wrote:
    I don't think it's possible to set the page range of a Book.printPreferences
    Theoretically it ought to be possible. Can't test for myself now; what does happen when you set the pageRange to overlapping sub-files?
    I've just tried it with CS3. It might have been implemented in later versions.
    In the print Book dialogue the page range field is disabled. You cannot enter anything there.
    If you try to do it with a script it says that printPreferences is read only.

  • I have Adobe PDF Pack- Can I delete pages out of a PDF with this?

    I have Adobe PDF Pack- Can I delete pages out of a PDF with this? It seems like suck a simple task, but I can't figure out how to do it!
    Also, once I Combine PDF's, can I separate them in the future?
    Thanks!

    Hi LrettigMD,
    Editing a PDF requires Acrobat (not Reader). You are welcome to download a free 30-day trial of Acrobat from www.adobe.com/products/acrobat.html if you'd like to give it a try.
    Best,
    Sara

  • Help please: how to boot from clone/external hard drive because "disk cannot be partitioned because some files cannot be moved"?

    MBP Retina 15" MID 2014 2.5Ghz
    OS X Yosemite 10.10
    I have a external HDD and want to erase and restore my laptop so I can install windows via Bootcamp Assistant but I don't know how to boot from a clone to fix the issue and am not sure if when I erase and restore I will still have Yosemite 10.10? I have no way to reinstall the OS if I lose it. An average user friendly guide would be greatly appreciated please

    I do not think you have to erase your MacBook's disk in order to install Windows. First of all you can try a few things before formatting the disk.
    The first thing you should do is to check that your MacBook Pro's drive is OK with Disk Utility (in /Applications/Utilities). After opening it, choose "Macintosh HD" in the sidebar and press "Verify Disk". If it gives you any error, you will have to boot your Mac in OS X Recovery (press Command and R keys while your Mac is starting up) to repair Macintosh HD (the steps are the same but pressing "Repair Disk" instead of "Verify Disk").
    After you have repaired the drive, boot up in OS X and try partitioning the drive again with Boot Camp Assistant. If it does not work, you will have to format the drive and reinstall OS X, but I will give you these steps only if this does not work.

  • How to open  a tiff file on a specific page?

    Hi,
    I would like to open a tif file in internet explorer at a specific page.
    My tif file gets 3 pages.
    I succeed in opening it in internet explorer at the first page by just cliking on this link:
    But i would like to open the tif file directly at its second page.
    Does someone know how to do that?
    Thanks in advance for your help.
    Nicolas

    I'm not aware of a browser that supports TIF, so it's gotta be a plugin or helper app displaying it. It would certainly be a function of the plugin or helper app. If you were using the TIF embedded in a file with the object or embed tag to call a plugin, then I think it more likely there'd be some parameter (if it supports multi-page TIFs) to specify the page to jump to. But I think it unlikely that it would actually read a query string parameter, as I had suggested. No that it couldn't, just that I don't think it likely.
    But definitely, it's dependant on the viewer app/plugin. The problem is if you put this on a site and other users go to it, and you can't somehow explicitly specify which app they use to display the image, it could be any app/plugin: Quicktime or any of a dozen other image viewers that support TIF, and they may all work differently with regards to multi-page TIF support and displaying a particular page.

  • Applescript to open a PDF file to a specific page

    I'm wondering if Preview (which I don't think can) or Adobe Acrobat (which I think can) can be scripted to open a PDF file to a certain page. Either on 10.7 or 10.6
    Thanks

    neither acrobat nor preview are directly scriptable.  best you can do is some GUI scripting:
    set newPage to 25
    tell application "System Events"
              tell process "Preview"
                        set frontmost to true
                        tell menu bar 1
                                  tell menu "go"
                                            click
                                            tell menu item "Go to Page…"
                                                      click
                                            end tell
                                  end tell
                        end tell
                        tell window 1
                                  tell sheet 1
                                            tell text field 1
                                                      set value to (newPage as text)
                                            end tell
                                            tell button "OK"
                                                      click
                                            end tell
                                  end tell
                        end tell
              end tell
    end tell

  • Placed in an InDesign document other InDesign attached file on a specific page

    (inserted into another file indesign indesign on a specific page)
    Hey all !
    I'm trying using Script:
    1. in a document already open indesign:
    var myDoc = app.activeDocument;
    2. place another file. indd 
    app.open(File("/c/myTestDocument.indd")); ----> code and not well
    3. also be inserted in a specific page, (eg on page 12 of my active.Document or any other page)
    var addPages = 2;
    // Page number 2 is item(1), since page number 1 is item(0):
    var addAfter = app.activeDocument.pages.item(2);
    to see if I can give Script code to get the result.
    thank you very much hope to answer please.
    Raul.

    answer is correct but also we're add that the pages one attribute more as masterSpreads.
    For e.g.
    var myDoc = app.activeDocument;
    app.importedPageAttributes.pageNumber = 1;
    var myPage = myDoc.pages.item(0).appliedMaster = app.activeDocument.masterSpreads.item("B-Master"); -> Not right ¿ How would it be right?
    myPage.place(File("/c/myTestDocument.indd"));
    app.importedPageAttributes.pageNumber = 2;
    var myPage = myDoc.pages.item(1);
    myPage.place(File("/c/myTestDocument.indd"));
    What would SCRIPT code right?
    Thanks! and Cheers

  • Open PDF document to a specific page via a

    I know if you can open a PDF to a specific page by using the PAGE parameter when you open via ACROBAT. I want to be able to do the same thing via the anchor tag <a>. How can you do it?
    For example, I have html in my region source:
    Refer to the <b><a href="javascript:popUp2('#APP_IMAGES#FD User Guide.pdf')">System User Guide</a></b> on how to use all the features ...I also have it in URL target of a list region:
    javascript:popUp2('#APP_IMAGES#FD User Guide.pdf')The customer wants to be able the user to go automatically to page 53, for example.
    Can someone please help ASAP?
    Robert
    http://apexjscss.blogspot.com

    All,
    I found my answer. You just need to append "page=+page_number+* to the filename.
    Robert
    http://apexjscss.blogspot.com

  • Linking to specific pages within several other pdfs

    My source pdf has ~700 references and I need to create a link to each reference (target pdfs).  There are hundreds of target pdfs and the source document references different pages within each of the target pdfs.  The target pdfs need to contain the entire document and not just the cited pages.  What I am doing is creating a link and selecting opening a file.  What I am not able to do, is assign a page number to this link so that a certain page will appear instead of page 1.  I understand that you can set the initial view with file properties, but that will not work as I would then have to create a pdf for each link and there are far too many references to do that.  Here is a sample "Reference at pp. 2, 4, 6." and in this sample I want a separate link for each reference that will go to page 2, page 4 and page 6 (again I need the entire document for reading purposes for these links and not these specific pages).

    Please refer : http://blogs.adobe.com/tcs/2011/01/tcs-specific/linking-to-a-page-within-a-pdf-and-more.ht ml

  • Linking to a specific page in a remote pdf document

    Hi all
    I need to know which tools, if any, will allow me to create a link that opens a remote pdf to a specific page.
    Thank you very much!
    Giordano

    Read this:
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf

  • Making a PDF go to a specific page after end of a video

    Hi everyone,
    I've been trying to get a flash video to point to a specific page in a PDF document, after it is done playing. But I can't find a way to make it work.
    Is there a script or any way in Acrobat, so I can make it go to a specific page after the video has ended. I've tried using a link in Acrobat, but it instantly sends me to the page, without letting the video play, and I am really stumped in what to do.
    Any help?

    The code you show is an incomplete/incorrect attempt to use AS3.  For AS3 you need to assign an instance name to the button and then assign an event listener to the button using the instance name to target it.  The code goes in the frame of the timeline that coincides with the button's frame (preferably on a separate layer for actionscript).  So if you gave the button an instance name of "btn", the complete/correct code for it would be...
    stop(); // this is a timeline command, not a button command
    btn.addEventListener(MouseEvent.CLICK, buttonClick);
    function buttonClick(evt:MouseEvent):void {
         gotoAndPlay(2);

Maybe you are looking for