Button linking to PDF

standard convention to link to a specific page of a PDF
document is to do this:
http://www.mydomain.com/myPDF.pdf#page=7
i apply this to the 'open url/file' in the button properties
"on success/user clicks button", but all that happens is the PDF
opens to page 1. never to the appropriate page in the document.
any ideas as to what could cause this?

sorry -- i have a captivate output file (SWF) residing within
a Captivateplayer, which resides on our LAN. in the SWF are a
series of buttons that all link to unique pages within on PDF,
which resides on our intranet.
i fixed one problem. turns out somebody uploaded a recent
edition of the PDF complete with a SPACE in the name. fixed that up
and now i've got a little bit closer to fixing the issue.
now, when clicking one of the buttons in the SWF, the PDF
will open to the appropriate page. GREAT! but when i close the PDF
(or extra browser session), and click a DIFFERENT button that links
to a different page in the PDF, the same previous page opens...as
if it's CACHED. thing is, to rule out this being an IE
cache/history thing, i forced adobe to open the file itself and to
not integrate with the internet explorer. ...and the same thing
happened.
what could cause this?

Similar Messages

  • Button link to PDF?

    I've created a menu that has buttons linking to movies, and I'd like to create a button that links to a PDF. Can I do that? How?
    I know how to include the PDF on the DVD using the DVD-ROM Content link, but how is a user supposed to know there's data on the DVD?
    Thanks in advance.

    how is a user supposed to know there's data on the DVD?
    I handle this in one of three similar ways:
    1.) Create a Title with instructions in PrPro, telling the user how to access the ROM content via a computer. I put in an admonition that it will NOT be accessible via a set-top player. I like this better than #2 below.
    2.) Same drill, but with a Menu w/ no visable acitve Buttons/Links, either as Play First, or at the end. I'd do an Auto-Activate Button w/ no graphics (like an Easter Egg), so that the user can navigate back to the program/Menus.
    3.) Same drill, but as text on maybe both the DVD disc and on the liner-notes on the case. I'll usually do this along with #1.
    Good luck,
    Hunt
    PS - Sonic was working on eDVD, a program for interactivity on a DVD, but abandoned the software. IIRC, the code has been bought and there is work being done on similar, but do not have details.

  • Buttons/Links in PDFs on iPad

    I'm putting together a series of documents to be distributed and read on iPads at a meeting using Acrobat X. I've been placing buttons on each page saying "return to page 1" but when I transfer them to an iPad and use iBooks the buttons don't appear.
    So, two questions:
    1) Will the buttons just not appear at all, as in does the iPad not support that kind of function on PDFs
    2) If there is an app out there that will support these functions, what is it?
    I've tried looking elsewhere to find this answer but haven't. Apologies if I've missed something obvious.

    I did some experimenting with the User Guide for the iPad, which is a pdf. It has hyperlinks in the Table of Contents. When I Get Info on the Guide on my Mac, it says that it is an Adobe InDesign document. (Interesting that Apple did not use Preview or Pages to create it!)
    http://manuals.info.apple.com/en_US/ipad_2_user_guide.pdf
    I downloaded it with Safari on the iPad. In Safari the links in the doc do not function. I tapped the page and chose to open it in iBooks and the links work fine. I tapped the page and opened it in GoodReader, which is a Swiss-Army-Knife, great-for-everything, iOS app, and the links worked fine. I tapped the page again and opened it in FileApp and the links did not function.
    It seems that links work depending on the iOS app that opens the doc, but beyond that I cannot shed light on why a pdf with links made with InDesign function, but yours made with Acrobat do not.
    I hope this is helpful.

  • Why text and button links on a PDF do not work in the iPad

    I have Acrobat Pro 9.2.3 and InDesign CS5.
    I've tried creating both button and text links directly from InDesign (Window > Interactive > Hyperlinks). I then export the multi-page PDF with "Acrobat 6 and Above" selected as well as the "Hyperlinks" and "Interactive Elements" checked. When I open the PDF in my iPad, none of the text or button links work.
    Then . . .
    I tried opening the same multi-page PDF in Acrobat Pro, and manually created the link boxes (Tools > Advanced Editing > Link Tool). The iPad still can't interprete these two interactive elements.
    Any clues what I'm doing wrong?

    Try exporting as ePub - now test inside Digital Editions and if OK - drag the file into iTunes and synch to iPhone/iPad.
    It's probably a Preview issue as mentioned but exporting to ePub is good fun!
    J.

  • Open an attachment (non-PDF) within a PDF document (via button/link/other)

    Good morning,
    I have a PDF file where I attached an excel file and I'd like to use a mechanism (button/link/other) in the PDF to open the attachment. I read the the link technique only works if the attachment is a PDF. Is that true ? Is there anything else I could do to achieve this ?
    Thanks,
    Fabrizio

    This can't be done with a script, but you can do it manually by going to
    the link you created, editing the "Go to a page in another document" action
    in it and then setting the "Open in" option to "New Window".
    This can also be done with a stand-alone tool, but that is more
    complicated, of course.

  • Linking a pdf to a button

    I'm completely new to flash and have figured out most of the basic features on my own thus far, but I'm completely stumped with this one issue of linking a pdf to a button.  I have read and reread all the postings on how to do this, but my button is not working still.  I'm using Flash CS5.
    I've used the recommended code on code snippet, I've used codes that were recommended and I've tweaked it, but it still not opening my pdf.
    here is the current code that I am using.  this is from the code snippet.  I've used this code to get my different scenes and it works, don't know why I'm having such a hard time with this. 
    AppPage_IndividualUSDoc.addEventListener(MouseEvent.CLICK, fl_ClickToNavigateToPDF_5);
    function fl_ClickToNavigateToPDF_5(event:MouseEvent):void
              navigateToURL(new URLRequest("APP_IND_US.pdf"), "_blank");

    you are awesome...thanks for you help. 
    import flash.events.MouseEvent;
    import flash.net.URLRequest;
    /* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    Nominations_BTN.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_12);
    function fl_ClickToGoToScene_12(event:MouseEvent):void
              MovieClip(this.root).gotoAndStop(1, "NOMINATIONS");
    /* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    Foundations_BTN.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_13);
    function fl_ClickToGoToScene_13(event:MouseEvent):void
              MovieClip(this.root).gotoAndStop(1, "FOUNDATION");
    /* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    Programs_BTN.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_14);
    function fl_ClickToGoToScene_14(event:MouseEvent):void
              MovieClip(this.root).gotoAndStop(1, "PROGRAMS");
    /* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    Contact_Us_BTN.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_15);
    function fl_ClickToGoToScene_15(event:MouseEvent):void
              MovieClip(this.root).gotoAndStop(1, "Contact Page");
    /* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    HOME_BTN.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_30);
    function fl_ClickToGoToScene_30(event:MouseEvent):void
              MovieClip(this.root).gotoAndStop(1, "MAIN PAGE");
    AppPage_IndividualUS_BTN.addEventListener(MouseEvent.CLICK, fl_ClickToNavigateToPDF_5);
              function fl_ClickToNavigateToPDF_5(event:MouseEvent):void
    trace("called");
              navigateToURL(new URLRequest("APP_IND_US.pdf"), "_blank");

  • PDF button link path missing

    Hi. I made a button in the pdf file with a link to a file I have on a network. If I copy the main file to a different location I loose the path to the attached file. How can I avoid having this problem? thanks

    File links in PDF files are relative by default. You would need to either use a script with a hard-coded path, or an external tool to change the relative paths in absolute ones.

  • Am I able to link a button to a PDF?

    I would like to link a button to a PDF in my folio. Is this possible? Is it "easy"?

    No. Not correct.
    Create the zip file and then move the PDF into it. The file has to be in the root of the zip file.
    Then fix the URL. It’s just HTMLResourses/myPDF.pdf. There is no http.
    Bob

  • Help with linking navigation menu button directly to pdf on server.

    I am trying to make the "specials" part of nav menu link to pdf on server. Please help

    You need to have your menu set to Manual in the menu properties.
    Then select a pdf file that you will be linking to and add it to the assets.
    Then select the menu item that you want linking to the PDF and select the PDF from the Hyperlinks list.

  • How To Disable Save Button in a PDF

    I have Creating One Application in Oracle Forms 6 and Run in Web
    In that I have Showing a Pdf Fie using a WEB.SHOW_DCOUMENT.
    But I have to Disable a Save and print Button in Display pdf file in a IE.
    It’s Possible then help
    thx

    The best way to find out something about it is to type in www.google.com these key words: disable save adobe
    Then you can read more about it on this links:
    http://www.adobeforums.com/cgi-bin/webx/.3bb65a55
    http://www.adobeforums.com/cgi-bin/webx/.3bc076e4
    http://www.acrobatusers.com/forums/ask_an_expert/questions/view/1222/
    It's interesting question and very important but looks like unsolved...

  • Adding a print button, a "download" PDF button and a navigation bar in a SWF created by InDesign

    I can't find a way to add "PDF features" on a SWF file exported from InDesign CS5.5 such as:
    - a print button
    - a download PDF button
    - a navigation bar (outside of the pages)
    edocker provides these features but it is pretty expensive and does not allow a lot of customization.
    Would anyone have an idea of how to do it ?
    Thank you.

    eDocker actually allows you to use all the interactive features you can create in InDesign. It kind of "wraps" your exported SWF into a user interface with all those 3 elements asked + more (zoom for instance)
    Check out these links:
    Sample:
    http://www.edocker.com/_demo/edocker-online-demo/index.html
    Workflow:
    http://www.edocker.fi/index.php/en/products/edocker2-desktop-publisher/workflow/

  • How to create a link to multiple links in pdf file

    how to create a link to multiple links or a button to multiple links in pdf file. this links is goto diferent pages, no web. sorry for my english.

    You can print to PDF from the Print Module .
    Do you have Adobe Acrobat?
    Otherwise install (free) Bullzip Free PDF printer.
    http://www.bullzip.com/

  • Acrobat Back Button link

    Hi-
    Does anyone know how to create a button within a PDF document that returns you to the previous slide/page?
    ie: I am on page 3, and I click a menu link that takes me to page 10... I want to go back to page 3 by pressing a 'back' button on the image.
    Is this possible?
    Thanks.

    After a bit more digging about the archives I have placed the following into the header
    <style>
    @media print {.ScreenOnly {display:none}}
    </style>
    <span class="ScreenOnly">
    <form>
    <input type='BUTTON' value="Print this page" onClick="window.print()">
    <form>
    <form>
    <input type='BUTTON' value="Back" onClick="window.history.back()">
    <form>
    </span>
    This creates two dinky buttons at the top of the page.
    One thing though
    Is it possible to join the two comands into the same button?
    I mean can you get a button that prints then goes back automaticaly?
    Cheers
    Bjorn

  • Possible to create a link in PDF?

    I am new the Acrobat SDK.  I have been asked to develop a tool that searches for a specific string in a PDF document and then creates a UNC link from it to a shared document on the network.
    This is currently done manually using the Adobe Acrobat product.  However we'd like to automate this process as it needs to be repeated for severl documents.  Reading the SDK docs, it was not immediately clear to me if it supports editing the document by creating links.
    Does anybody know if this is possible and can you point me towards any documentation on this topic?
    Thanks.

    HI Bernd,
    The video above does not show me how to link to a video have it start playing.
    I know it is also possible in indesign to have a button link to a specific point in a video, but I haven't been able to find out how to do that from a text link.
    so for example. the text could say "watch our video, or click here to learn about subject two".
    where - "learn about subject two" takes the user to a specific part of the video, and makes it start to play.

  • Opening new window on button click from pdf without loosing session

    Hi,
    In my Java web applicaion on click of a link, we are opening a new window in which we are displaying a pdf. There are 5 buttons on this pdf.
    On clicking of this button again we are opening a application link in new window. But in this window we are not gettting our session, which is there in first two window.
    For opening new window from pdf button click we are using
    var dynamicUrl3 = myappurl;
    app.launchURL(dynamicUrl, true); 
    How can i open new window with the same sesion from the pdf button.
    Please help for the same.
    Thanks,
    Abhijit Mohite.

    Yes, with target="_blank" in a link or a form.Thanks for ur valuable suggestion. I changed the button to link.
    Its working fine now without JavaScript.
    Now i got another requirement. When user select some items and press a button in the new popup window, the window must close on button click and the parent window must refresh. This must also be done without using JavaScript.
    Is this possible? Please give me an idea to do this.
    Thanks.

Maybe you are looking for

  • Installing oem 10.2 on solaris

    I go here to get the download: http://www.oracle.com/technology/software/products/oem/htdocs/linuxsoft.html I tried to download 10.2.0.5, but it looks like just the patch set. same with 10.2.0.3 do ih ave to install 10.2.0.1 and then run the 10.2.0.5

  • LG BP320 Blu-Ray DVD player

    I am considering buying the LG BP320 Blu-Ray DVD player.  The main reason I am considering this player is to be able to directly access Netflix rather than having to get the DVDs through the U.S. Mail.  I have a wireless router on my computer.  My qu

  • Windows Authentication Fails

    We are running ACS 4.1.(4) Build 13 on a member server within a 2003 AD Domain. We get the following errors in the CSAuth.log file: AUTH 05/03/2008 17:21:15 E 0384 6180 0x24 External DB [NTAuthenDLL.dll]: NetUserGetLocalGroups failed with result [5]

  • Possible to change colors of mouse cursor?

    I was wondering if it was possible to change the color of the mouse cursor. With out the use of a program/haxie. Is there a particular file/preference I can edit, some command line for teminal? Thanks in advance nerd2

  • Prevent PDF from converting to FDF upon submission?

    I have created a pdf in Adobe Acrobat 9 Pro that has fillable forms. I have a submission button at the bottom that sends completed form via email directly to me. When I receive the forms they come in an fdf file format. I've done something simple to