Inserting an hyperlink towards a (Mathematica) document in Keynote

Hi,
hyperlinks seem to be restricted in Keynote. I want to add an hyperlink to an image (which I know how to do) towards a different document (a Mathematica demo). Since it is not a webpage nor another Keynote document nor a Quicktime, it seems impossible to do. Is there a way around this limitation? (It is simple to do on PPT!...)

Sure this can be done:
    java.net.URL url = new java.net.URL("http://java.sun.com/");
    getAppletContext().showDocument(url, "_blank");If you put that in a button callback function, you may need to stash the applet context in a variable somewhere. I just use a static variable.

Similar Messages

  • Possible to insert a HYPERLINK in document HEADER?

    Subject: Possible to insert a HYPERLINK in document HEADER?
    I have a 300 page document, where the first page is a "Table of Contents".
    I would like to provide the readers with a QUICK way ("no-brainer/easy" way) for the reader to JUMP back to that "Table of Contents" page from any place in the document.
    Can I, perhaps, insert a hyperlink to the "Table of Contents" in the document HEADER? Or is there a different way to go about this?
    Thanks for anybody's creative answer (the simpler the better . . . .)

    Hi.
    Thanks for your reply.
    It was originally a Microsoft Word document. I just clicked "convert to pdf" from the toolbar. Then, in Acrobat 8, I have inserted a page-number header.
    Can I perhaps insert a hyperlink within that HEADER . . . pointing back to the first (Table of Contents) page?

  • Insert Picture/Hyperlink as Document Property

    Hi All,
    I have been able to insert most of the metadata into Word template as document properties but the Picture and Hyperlink column is not available. I also tried using INCLUDEPICTURE field like this:
    {INCLUDEPICTURE "http://<Site>/SiteCollectionImages/{DOCPROERPTY CustomerFirstName}.jpg" \d}
    where CustomerFirstName is the Sharepoint Doc library column.
    Does anyone know how to do this? If this is Office question I can post it in that forum as well. Thanks for any pointers.
    Regards, Kapil ***Please mark answer as Helpful or Answered after consideration***

    Hi
    This may help you
    http://stackoverflow.com/questions/9613963/how-to-insert-sharepoint-metadatapicture-into-your-word-document
    http://techtrainingnotes.blogspot.in/2007/08/sharepoint-adding-hyperlinks-to-doc.html
    Please Mark Answered if my reply solves or helps in solving your problem. Thanks! 
    Amit Kotha

  • Picking up PDF URL for insertion as hyperlink in Word

    I just upgraded from Acrobat Pro 8 to 9, and I'm having trouble copying URLs from PDFs. I create a document in Word, then want to insert a hyperlink inside the doc to a PDF at a website.  I used to be able to select text, right-click to bring up the Insert Hyperlink dialog in Word, then open PDF and its URL would automatically insert into the dialog box or I could cut-and-paste the URL from the browser window. Now, all PDFs within a website open not in a browser but in a PDF window with a truncated URL and "[1]" inserted into the filename.  I then have to find the full URL and manually type it into the Word dialog box...and those URLs can get long.  Sorry if this question may be stupid and the answer obvious...I'm happy to wear egg just to get this functionality back.  I'll even downgrade to 8 if I have to...sigh...

    We may not be able to tell you much without seeing the Word document.

  • How to insert a HYPERLINK in a template Editable Field?

    Question:  How to insert a HYPERLINK in a template Editable Field?
    Hi
    Does anyone know how to insert a HYPERLINK in a template Editable Field?
    I want the link to always display the word "Cities".
    But the URL will change with each child page.
    Here's what I've got so far . . .
    <!-- TemplateBeginEditable name="Cities" -->Cities<!-- TemplateEndEditable -->
    Thanks so much!

    NOTE: This is to go into the TEMPLATE
    Your best bet is to keep the hyperlink OUT of the editable Field and to make the HREF attribute of the link editable.
    This would go in the head of your document:
    <!-- TemplateParam name="href" type="URL" value="" -->
    This would go where you want the link to appear:
    <a href="@@(href)@@">cities</a>
    THE BETTER WAY: You can either paste these quotes into the appropriate places in your template or you can insert:
    <a href="#">cities</a>
    and click inside the opening <a> tag.
    Then go to Modify > Templates > Make Attribute Editable
    In the dialog box "Editable Tag Attributes" you should now see "Choose which attributes of this A tag should be editable."
    If HREF is not showing in the drop-down, do Add and put it there.
    Check the box to Make this attribute editable.
    Give a name for this editable attribute (if you have more than one on a page, you will want it to be understandable, like "cities" for your cities links).
    Make sure it is of Type URL
    If you want a default URL in place, put one in the Default field.
    Then push OK.
    To use it, on each page, do Modify > Template Properties... choose the property to edit, and put the new URL in the entry field.
    Press OK.
    Beth

  • How to insert a hyperlink in ABAP documentation

    In SE38 you can create your own online documentation. I want to insert a hyperlink in this documentation so that when the user clicks the 'I' icon, he can click directly on the hyperlink in the documentation.
    In my research I found that when you are editing the documentation, you must choose Insert -> Link. Once I click that, I get a popup asking for the following fields:
    Document Class:
    "Field based on what Document Class is chosen":
    Name in Document:
    Does anyone know what I need to fill in those fields?
    Thank you,
    Brenda

    Hi Brenda,
    I'm glad to know it works, up to this limit. In my system, this limit is 60 characters (SAP_BASIS 7.0 SP 13).
    I think we can't go beyond this limit, but there's a workaround, used by KENO (URL to SAP library) document class for example.
    You link your document class to a function module exit, by entering the function module prefix in TDCLD-DOKEDICL field. Entering a value XXXX means that SAP will call function modules XXXX_OBJECT_TITLE and XXXX_OBJECT_SHOW. I recommend to use KENO as a template.
    For example, you can enter the following code in XXXX_OBJECT_SHOW :
      data l_url(65535).
      case dokname.
        when 'A1'.
          l_url = 'http://help.sap.com/saphelp_nw70/helpdata/en/07/bf5bfa83404c6a9ed9858bcb0d46d1/frameset.htm'.
      endcase.
      if l_url is not initial.
        call function 'CALL_BROWSER'
          exporting
            url                    = l_url
          exceptions
            frontend_not_supported = 1
            frontend_error         = 2
            prog_not_found         = 3
            no_batch               = 4
            unspecified_error      = 5
            others                 = 6.
        if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
      endif.
    Then, in your document, you enter :
    <DS:XXXX.A1>click me</>
    Clicking it will display the SAP library
    Of course, instead of hardcoding the values in the function module ("A1"), you will use other means to get the URL from Solution Manager, using a key of 60 characters maximum. This would be another question if you don't know how to get it.
    Best regards,
    Sandra

  • Inserting a hyperlink in .ppt does not work. How to do it ?

    I want to insert y hyperlink to an .xls and am using the prescribed 'insert link - file ' method however there where the file should be selected from my Documents (in Finder) - I keep seeing the turning wheel.
    What should I do differently ?
    Thanks in advance for your help.....
    Rgds

    Hi, Pieterst!
    This is somewhat of a standard reply **, but reinstalling Office 2011 might (vielleicht) address problems that you may be experiencing.
    The current version of Office 2011 is 14.4.8.
    First - find your Office 2011 install disc with the product key # - and only then remove Office according to MS instructions
    http://support.microsoft.com/kb/2398768
    Or go here to DianefromOregon's site for help removing Office 2011:
    http://www.officeformachelp.com/2012/12/office-for-mac-2011-remove-office/
    Then Reinstall from DVD
    Then enter your Product #
    After successfully reinstalling Office 2011,  update your Office product using the Software update within Office called Microsoft Update or going to the Help menu within Word or Excel or PowerPoint and select Update.
    It may take a few times before you get to final upgrade to current Office version.
    It should be 14.4.8 as of current date.
    How to locate product keys
    http://support.microsoft.com/kb/2279109
    or here on locating product keys
    http://office.about.com/od/MicrosoftOfficeMac/a/Best-3-Ways-To-Find-Microsoft-Of fice-For-Mac-Key-Codes.htm
    Note is updated as of March 5, 2015
    **Wir können etwas anderes versuchen, - wenn das nicht funktioniert.

  • How do I insert multiple photos into an excel document vs inserting each individually?  Insert, Picture, From FIle...now what?  it only allows me to choose 1 at a time.

    Help - How do I insert multiple photos into an excel document vs inserting each individually?  Insert, Picture, From FIle...now what?  it only allows me to choose 1 at a time.

    https://discussions.apple.com/thread/3383532?tstart=0
    Stefan

  • How to insert page numbers in a PDF document?

    How to insert page numbers in a PDF document using Adobe Acrobat X Pro 10.1.2?
    Thanks.

    OK, I found it myself:
    1. Tools - Pages - Edit Page Design - Header & Footer - Add Header & Footer.
    2. Select the font and size, etc, place the cursor on the appropriate site to insert the page number, click the "Insert Page Number" button, and click OK.
    That is!

  • I have a word document that I have put hyperlinks in and turned into a pdf.  When I email and receiver opens in iPad the document is blank.  When I do a file save as pdf the document appears and the hyperlinks work but the document has much of the content

    I have a word document that I have put hyperlinks in and turned into a pdf.  When I email and receiver opens in iPad the document is blank.  When I do a file save as pdf the document appears and the hyperlinks work but the document has much of the content turned into symbols.  What is going wrong?

    You select the printer properties and set the appropriate page size (I think there is a place to set it in PDF Maker too, but not sure). In the printer, this is equivalent to putting the proper paper in the printer.

  • Inserting a Hyperlink in the "Submit" button in forms CS4

    This has got to be a nobrainer!
    I created a form and at the end it has the submit button...when i go to insert a hyperlink it won't let me copy paste a url and doesn't recognize
    the button....does anyone know how i  can include a hyperlink for the submit button which will send the info to the new url??
    Thanks!
    Eric

    You can have a Submit button with the Submit URL and the remove the back ground fill to look like a hyperlink on the form.
    Thanks
    Srini

  • Inserting a hyperlink in Safari on iPad2

    How to insert a hyperlink in the body of a message in a Safari email on an iPad2?

    [iPad User Manual|http://manuals.info.apple.com/enUS/ipad_2_userguide.pdf|when you click this blue text, and amazing thing happens! a pdf starts to load]
    Page 21

  • Can you insert a file path in pages document

    Is there any way of inserting a "file path" into a document in the new version of pages. You could do it in Pages 09 but I can't find any way of doing in the new
    Version. I know the inference is you are using the cloud - therefore file paths are not needed - but a lot of us still store documents in various places ( especially in the work place).

    No.
    Pages 5 has over 90 other features removed:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=b14426a2c5af2 65f2213d98ee45f08d7&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Export your Pages 5 files to Pages '09 or Word .docx and trash/archive Pages 5.
    Then rate/review Pages 5 in the App Store.
    Peter

  • How to insert a hyperlink to RETURN TO FRONT PAGE?

    I just now played a photo slide show that I made last night. There is no way to exit that page to go back to the Table of Contents page/Site Menu.
    How do I insert a hyperlink in all the pages so a visitor can return to the first page, or at least to the Table of Contents page/Site Menu.
    Also, there was no navigation bar on the slide show. Instead, there were clickable thumbnails of the slide show. Is this as iWeb made it to be?
    — Lorna in Southern California

    Sorry to bother you, but i did find the answer to my question by going to the Help Menu, which I forgot all about in my concern. So to keep this from being a total waste of your time, here are the instructions for making a hyperlink to another page. Again, I apologize. -Lorna
    Adding a text hyperlink
    You can create a text hyperlink that opens a webpage or a new email message, or downloads a file.
    To add a text hyperlink using the Link Inspector:
    1. Select the text you want to turn into a hyperlink.
    2. If the Link Inspector isn't open, click Inspector in the toolbar (or choose View > Show Inspector), and then click the Link Inspector button.
    3. In the Link Inspector, select "Enable as a hyperlink," and then choose an option from the Link To pop-up menu:
    • One of My Pages: Opens another page in any of your iWeb websites. Choose the page from the Page pop-up menu.
    • An External Page: Opens any webpage for which you know thethe website address. Type the address in the URL field.
    • A File: Downloads a file to the visitor's computer. (The file is part of your website; visitors won't have access to your computer.)
    • An Email Message: Opens a new email message containing the email address and subject you specify.

  • Why does it take 2 or 3 minutes to access a url from a hyperlink in a pdf document?

    With either Adobe Reader locally or the plug-in on a website, it takes a huge amount of time for a url called by a hyperlink in a pdf document to appear in a browser window. Can anyone explain why this happens and, hopefully, how to fix it?

    Yes, sorry about that. I am using Win XP Pro and Adobe Reader 11.0.08 and plug-in 11.0.07.79. The browser is Firefox 35.0.01. The problem goes away if I disable the Adobe plug-in and use the native Firefox pdf handler. The same problem also occurs in Safari for Windows.
    During the delay between clicking the hyperlink and the target url's being displayed, the "not responding" error appears for the browser in question.
    This happens on both my desktop machine and my portable (also running WinXP; the Adobe plug-in is 11.0.8.4)

Maybe you are looking for

  • Security in human task views

    Can anybody explain or give a pointer to documentation on how to implement security (authorization with roles) in BPM human task views? What do we need to configure to achieve this? // npettersson Edited by: npettersson on 2011-jul-29 05:07

  • Apple messed up, too late to get help?

    Ok, so this time last year the battery in my 2009 Macbook overheated and exploded. I took it in to an Apple retail store, paid for it to get fixed and they hooked me up with a new battery as well as a new keyboard and a new screen. I never had a sing

  • Today I turned on my MacBookPro and my profile picture has changed. What might happened?

    Today I turned on my MacBookPro and my profile picture has changed. What might happened? I'm concerned about privacy issues. I'm sure no one else than me used the computer the last month....

  • Having issues with Oracle install on Linux

    Can Oracle 9.2.0.1.0i for linux run on RedHat Linux 8.0 personal edition or does it need to be installed on Advanced server version of linux? When I try I get many errors in the linking stage for example: Error in invoking target ntcontab.o of make f

  • Locking printing after 3 times

    I'm looking for a way to lock my pdf after someone prints it 3 times.  I know how to lock the printing, but I'm trying to at least allow 3 prints.  I'm working with Acrobat Adobe XI pro.  Any help is appreciated.