Image with hyperlink

In iWeb you can have an image as a hyperlink [email url file etc]. It would appear that in iBooks Author you can only have text as a hyperlink. If that is not the case then how would you turn a 'facebook' icon [*.jpg] into a webpage hyperlink?

Thanks for the prompt help very much appreciated. I guess this is really an issue for the Apple developers given that they delivered the functionality in iWeb it is difficult to understand why it was not delivered in iBA Ant..

Similar Messages

  • How do I save an image with hyperlinks so it can be put in an e-mail?

    I designed an e-mail and used the slice tool to insert hyperlinks. Now I want to save it so that it can be put in the body of the e-mail with the hyperlinks active and usable. Any suggestions?
    Thanks!
    BI

    When you preview the image from the save for web dialog box, it will open your browser to see the image. It also will have the necessary html code needed for the links to work. Just copy that html code and add it to your email code with the image.

  • Images with hyperlinks

    We send out emails with an image in the body of the email where the text usually is, and I wondered if there is any way to incorporate hyperlinks on the image.

    An image converted to an interactive button with an action going to an URL, I guess would be considered an image map. But you can not export directly into a format that would be useable for an email... or am I missing something?

  • Content Query Web Part - Custom ItemStyle.xsl to display image with hyperlink

    I don't have access to InfoPath or SharePoint Designer to edit the ItemStyle.xsl. So any solution suggested is preffered to be a manual change to ItemStyle.xsl
    I use Content Query Web part (in the main site) to list all the Wikis created in the a sub-site. The idea is to link each wiki to its printable version stored elsewhere.
    The wiki has custom column say "Link" that hold hyperlinks to the printable version.
    I want to create a column in the content query web part that displays an image (same image for all wikis stored in the site Assets) but on clicking takes me to the printable version page.
    I got the image displayed but the hyperlink takes me to the location where the image is stored and not to the printable version page.
    <!--Variable declared to read the link from the column Link-->
    <xsl:variable name="PDFLink">
    <xsl:value-of select="@Link"/>
    </xsl:variable>
    <!-- Image to the hyperlink-->
    <a href="{$PDFLink}">
    <img src="../Images/Icon.jpg"/>
    </a>

    Hyperlink column is treated a little different. The field, by default, puts the URL and then the friendly name concatenated together, but separated by a comma. So I created two variables one that pulls everythng before the comma and the other after. Then
    the html "a" tag looks like this:
    <!--Variable declared to read the link from the column Link-->
    <xsl:variable name="ActualLink" select="substring-before(@LinkColName,',')"/>
    <xsl:variable name="FriendlyName" select="substring-after(@LinkColName,',')"/>
    <!-- Image to the hyperlink-->
    <a href="{$ActualLink}"><xsl:value-of select="$LinkColumnName"/>
    <img src="/Images/Icon.jpg">
    </a>

  • Images with hyperlink in javascript - help needed

    Hai,
    I am having two hyperlinks say, "Good Morning" and "Good Evening". When I am clicking "Good Morning", a small arrow or a picture should display with the hyperlink.
    When I am clicking "Good Evening" this one should have the small arrow or a picture and "Good Morning" will be displayed normally (without picture).
    How can I do this using javascript?
    Did anyone has the code? Pls help me.
    <html>
    <head>
    <title>
    Moves the Arrow When Clicked the Headings for Sorting purpose
    </title>
    <SCRIPT language="JavaScript">
    function remove_picture() {
    function set_picture() {
    </SCRIPT>
    </head>
    <body bgcolor="peachpuff" width="90%" align="center">
    <table>
    <tr>
    <td align="left">Good Morning</td>
    <td>Good Evening</td>
    </tr>
    </table>
    </body>
    </html>
    - yogee

    <html>
      <head>
        <style type="text/css">
          #notclicking .highliter {
            display: none;
          #clicking .highliter {
            display: inline;
        </style>
        <script type="text/javascript">
          function showHighliter(elem) {
            elem.id="clicking";
          function hideHighliter(elem) {
            elem.id="notclicking";
        </script>
      </head>
      <body>
        <a href="#" id="notclicking"
           onfocus="showHighliter(this);"
           onblur="hideHighliter(this)">
          <img border="0" class="highliter"
               src="http://forum.java.sun.com/im/duke.gif"/>
          Good Morning
        </a><br/>
        <a href="#" id="notclicking"
           onfocus="showHighliter(this);"
           onblur="hideHighliter(this)">
          <img border="0" class="highliter"
               src="http://forum.java.sun.com/im/duke.gif"/>
          Good Evening
        </a><br/>
      </body>
    </html>

  • How to save an image withe hyperlinks (NL)

    Can someone tell me how i add hyperlinks to a part of my image. I created segments, but when i wan to save it for the web, the image saves itself in many gifs files. Can someone help me

    It works this way because the web works this way. Images themselves cannot hold interactive data. It's all in the HTML and CSS code.
    Mylenium

  • Put in the clipboard, from an VB program, an image with a tooltip and a hyperlink to paste them into a Word or PowerPoint doc.

    I tried to put
    in the clipboard an image with an associated tooltip
    and a hyperlink to paste them into a Word or PowerPoint doc.
    I tried to do it with the usual Clipboard's methods SetData and GetData. It's easy to paste an image, text, rich text, html, but it does not appear to be able to associate metadata or hyperlink to an image.
    Usally the tooltip
    and the hyperlink are in the metadata
    associated with the object.
    I think it can be done with the CliboardData class and its Data and Metadata properties, working with the different items of the List of Objects, but I don't know how to tackle it.
    Any suggestions?
    Thank You

    I tried to put
    in the clipboard an image with an associated tooltip
    and a hyperlink to paste them into a Word or PowerPoint doc.
    I tried to do it with the usual Clipboard's methods SetData and GetData. It's easy to paste an image, text, rich text, html, but it does not appear to be able to associate metadata or hyperlink to an image.
    Usally the tooltip
    and the hyperlink are in the metadata
    associated with the object.
    I think it can be done with the CliboardData class and its Data and Metadata properties, working with the different items of the List of Objects, but I don't know how to tackle it.
    Any suggestions?
    Thank You
    Does word or powerpoint associate a tooltip and hyperlink to an image and then allow that image with those associations to be copied to another open word or powerpoint document? If not then your probably wasting your time.
    This code can "listen" for items copied to the clipboard. Needs a RichTextBox on a Form.
    Option Strict On
    Imports System.Runtime.InteropServices
    Public Class Form1
    ' System.Windows.Forms.DataFormats class http://msdn.microsoft.com/en-us/library/system.windows.forms.dataformats(v=vs.110).aspx
    Declare Function AddClipboardFormatListener Lib "user32.dll" (hWnd As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
    Declare Function RemoveClipboardFormatListener Lib "user32.dll" (hWnd As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
    Dim DataFormats As New Dictionary(Of String, String)
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.CenterToScreen()
    DataFormats.Add("Bitmap", "Specifies a Windows bitmap format. This static field is read-only.")
    DataFormats.Add("CommaSeparatedValue", "Specifies a comma-separated value (CSV) format which is a common interchange format used by spreadsheets. This format is not used directly by Windows Forms. This static field is read-only.")
    DataFormats.Add("Dib", "Specifies the Windows device-independent bitmap (DIB) format. This static field is read-only.")
    DataFormats.Add("Dif", "Specifies the Windows Data Interchange Format (DIF) which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("EnhancedMetafile", "Specifies the Windows enhanced metafile format. This static field is read-only.")
    DataFormats.Add("FileDrop", "Specifies the Windows file drop format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("Html", "Specifies text in the HTML Clipboard format. This static field is read-only.")
    DataFormats.Add("Locale", "Specifies the Windows culture format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("MetafilePict", "Specifies the Windows metafile format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("OemText", "Specifies the standard Windows original equipment manufacturer (OEM) text format. This static field is read-only.")
    DataFormats.Add("Palette", "Specifies the Windows palette format. This static field is read-only.")
    DataFormats.Add("PenData", "Specifies the Windows pen data format which consists of pen strokes for handwriting software; Windows Forms does not use this format. This static field is read-only.")
    DataFormats.Add("Riff", "Specifies the Resource Interchange File Format (RIFF) audio format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("Rtf", "Specifies text consisting of Rich Text Format (RTF) data. This static field is read-only.")
    DataFormats.Add("Serializable", "Specifies a format that encapsulates any type of Windows Forms object. This static field is read-only.")
    DataFormats.Add("StringFormat", "Specifies the Windows Forms string class format which Windows Forms uses to store string objects. This static field is read-only.")
    DataFormats.Add("SymbolicLink", "Specifies the Windows symbolic link format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("Text", "Specifies the standard ANSI text format. This static field is read-only.")
    DataFormats.Add("Tiff", "Specifies the Tagged Image File Format (TIFF) which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("UnicodeText", "Specifies the standard Windows Unicode text format. This static field is read-only.")
    DataFormats.Add("WaveAudio", "Specifies the wave audio format which Windows Forms does not directly use. This static field is read-only.")
    AddClipboardFormatListener(Me.Handle)
    End Sub
    Private Sub Form1_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
    RemoveClipboardFormatListener(Me.Handle)
    End Sub
    Protected Overrides Sub WndProc(ByRef m As Message)
    If m.ToString.Contains("msg=0x31d") Then
    Invoke(New ClipboardListenerDelegate(AddressOf ClipboardListener))
    End If
    MyBase.WndProc(m)
    End Sub
    Private Delegate Sub ClipboardListenerDelegate()
    Private Sub ClipboardListener()
    If InvokeRequired Then
    Invoke(New ClipboardListenerDelegate(AddressOf ClipboardListener))
    Else
    RichTextBox1.Clear()
    For Each Item In DataFormats.Keys
    If Clipboard.ContainsData(Item) = True Then
    RichTextBox1.AppendText(Item & " .. " & DataFormats(Item) & vbCrLf)
    End If
    Next
    End If
    End Sub
    End Class
    La vida loca

  • Images with embedded hyperlinks do not function in Yosemite Mail

    I'm running Yosemite 10.10.2 on a 2012 iMac.
    I send out a newsletter with images and hyperlinks embedded in those images. You click on an image, and your browser takes to to a specified web location.
    In Yosemite, Mail allows you to embed hyperlinks in an image... just highlight the image, press Command K and enter the link.
    The link even shows up when you hover the mouse over the image, but...
    No users of Yosemite that receive my newsletter can click on an image and activate the hyperlink.
    This worked fine in other versions of OS X.
    Any help here would be appreciated.
    I'm at a loss to understand why one of the most important and basic programs in Apples OS X, has such a glaring flaw.
    Thanks
    John C

    There is an issue with Cmd-K in Mail when used with certain URI, which may explain why some have not encountered a problem.
    If the link you are pasting contains characters that need to be "escaped" (such as the hash, #), Cmd-K strips the escaped characters, and replaces them with the naked character.
    Cmd-K converts
    this 'escaped' link:  http://foo.com/Pages/Report.aspx?ItemPath=%2fMapping+Audit+%232
    into:  http://foo.com/Pages/Report.aspx?ItemPath=/Mapping+Audit+#2. Because # is a reserved character in the attributes, and is no longer escaped, the link will fail.
    Directly pasting the escaped link into Mail, without using Cmd-K, will work fine. But that won't help if you want to add a link to an image or other text.
    Best to change the the name of the linked item, if possible, so it does not use a reserved character.

  • HELP!!!! I have spent hours trying to find out how to embed an image with a link or a Microsoft Word document with a hyperlink built within the document -- not as an attachment! Does ANYONE know the secret? Can it be done, or not! My PC clients do it.

    HELP!!!! I have spent hours trying to find out how to embed an image with a link, or embed a Microsoft Word document with a hyperlink built within the document -- not as an attachment into my email -- but where it shows as the email content when opened! Does ANYONE know the secret? Can it be done, or not? My PC clients do it all the time easily. Then I want to be able to send the embedded image/document (not as an attachment, but visable within the email when opened) to many email contacts at once, BUT the individuals receiveing them DO NOT SEE the other email contacts. Cannot seem to be able to find anything on being able to do these 2 tasks.PLEASE, SOMEONE, HELP!!!

    Don't know if this applies to Lion, but read here:
    http://www.makeuseof.com/tag/create-html-announcement-mail-iweb-mac/

  • I want to send an email of a "document" with Hyperlinks.. Like Target Does

    I have created a document in Pages. It's graphical with images and hyperlinks. How do I convert that into the body of an email so that it can be "active". So that readers of the email can link to the sites and stuff that are Hot spot hyperlinks. I know how to put little hyperlink lines of text into the email... but I wish to send out emails like Target or Best Buy or where ever that have "click here for more details" like buttons that get you to their web site.
    I hope this question makes sense. I've had no luck at all finding a way to import or export such a document. Thanks in advance!

    WiFi will work, cellular will work but they may not be able to access LTE, they will have to send it back to you for the warranty work.

  • How to get the UIDRef of Text frame associated with hyperlink?

    Hi,
    I have a document which contains Text hyperlinks . I am able to get the number of hyperlinks present in document using "IHyperlinkTable" and text range to which hyperlink is associated using interface "IHyperlink".
    InterfacePtr<IHyperlink> hyperlink(tableDb, table->GetNthHyperlink(i), IID_IHYPERLINK);
    if(hyperlink)
           hyperlink->GetName(&sHyperlinkName); //sHyperlinkName is text to which hyperlink is associated
    now I need to find the UIDRef of Text frame with which hyperlink is associated.
    I can get the UIDRef of "Image frame" using interface "IHyperlinkPageItemSourceData".
    InterfacePtr<IHyperlinkPageItemSourceData> sourceHyperLink (tableDb, hyperlink->GetSourceUID(), UseDefaultIID());
    if (sourceHyperLink)
            UID sourceHyperLinkUID  = sourceHyperLink->GetSourceUID();
    but this interface may be not helpful in case of text in the frame (word/words) associated with hyperlink.
    If anyone has done this please do let me know.
    Thank you all in advance.
    Priyanka

    Hi All,
    I am still unable to get the solution of this issue. If anyone has done this please help me to find the solution.
    Thanks in advance.
    Priyanka

  • Interactive pdf in indesign with hyperlinks warning

    create adverts that are interactive pdf in indesign with hyperlinks and mail to links and now we are assembling the document back together in the form of a book but on importing the pdf back into indesign we are getting the
    warning: “this file may contain newer extensions or information than this viewer can support. it may not open of display correctly and cannot be changed.”
    when the pdf imports the hyperlinks on the text work but the hyperlinks on the images are gone?
    Using version cs5 v7.0.4

    @Steve – I'm not so sure about that.
    At least the OP could experiment with Acrobat Pro's "Import as Layer" function.
    With "Import as Layer" you could import another PDF to a new layer.
    But I don't know if all the interactivity will stay in place and will be working.
    Did not test that yet.
    See the screen where I did layer two different PDFs together. A German version and an English version of the same document:
    "Import as Layer" is an option in the Layers at the sidebar of Acrobat Pro.
    As you can see there are some options for positioning with "Manual positioning".
    Acrobat Pro's Layers with options:
    Uwe

  • Image as Hyperlink

    I am having some trouble getting an image to be a hyperlink with the image and hyperlink component.
    <a href="lastpage.htm">
    <img border="0" src="buttonnext.gif" width="65" height="38">
    </a>Can this be done with the jsf components?

    Hi
    Put an image component in the GridPanel. Also put an hyperlink component in the same gridpanel.
    Now go back to the JSP Source and modify the code like this.
    <h:panelGrid binding="#{Page1.gridPanel1}" id="gridPanel1" style="height: 100px; left: 48px; top: 168px; position: absolute" width="266">
    <h:outputLink binding="#{Page1.hyperlink1}" id="hyperlink1" style="left: 120px; top: 96px; position: absolute" value="http://www.sun.com/jscreator">
    <h:outputText binding="#{Page1.hyperlink1Text}" id="hyperlink1Text"/>
    <h:graphicImage binding="#{Page1.image1}" id="image1" value="resources/berries.jpg"/>
    </h:outputLink>
    </h:panelGrid>
    This will display an images that is clickable and will navigate to the URL specified.
    Hope this helps
    Thanks
    Creator Team

  • Can't Download Images with Right-Click on Mouse

    I can't download images by right-clicking my mouse, like I do on my PC. For example, check out http://en.wikipedia.org/wiki/North_Dakota and look at the images of the flag, state seal and map near the top right corner of the page...
    When I place my cursor over any of these images on either my PC or my MacBook Pro, my cursor changes to a hand, indicating that the images are hyperlinked. If I right-click on an image, I can choose a SAVE AS command on my PC, but nothing happens on my MacBook Pro.
    If I left-click on a linked image, it simply zooms in, rather than taking me to another page. I'm using a small Kensington mouse.
    This could be a Firefox problem. I think I recall downloading some sort of extension that allows you to zoom in on images, and I suspect it's more or less taken over. If so, I'll have to track down the name of the extension and try and zap it.
    But I thought I'd check here first, just to see if other people have this same problem - or if you can suggest alternate strategies for downloading images.
    Thanks.

    Well, I found a novel solution - it's called Safari.
    I'll post on the Firefox forum to figure out why I
    can't download images with it, but it seems to work
    just fine with Apple's native browser. Thanks for all
    the tips.
    I just tried it, but I am using firefox 2.0 beta and I had no problems. Not sure what's going on. Have you tried any other pages or pics besides this one, which I don't think it would matter just wondering.

  • Need to insert image as hyperlink in infopath form

    currently in my infopath form i have inserted hyperlink control,it is working fine.
    but the issue is not able to customize the UI of hyperlink much,so now i don't want text has hyperlink,i want image as hyperlink.
    i noticed select picture option under hyperlink properties,but their is no browse option to select image.
    on click on image it should redirect user to some other page(.aspx).
    Is der any way to achieve this,image as hyperlink ?
    NOTE: i don't want to use custom code just for redirecting.
     

    Hi,
    This can be achieved though not as easy as it sounds.
    ## Field Reversion Issue
    Intuitively, you may think that if you click the “Insert” tab on your InfoPath form, and then choose “Picture”, and insert the picture on the form, you would then be able to bind that picture to a dynamic link. When you open the picture properties, you can
    even see where you can bind it. If you right click on the picture, select “Hyperlink” you will see the following:
    Great you are thinking! I just have to select my newly created dynamic field in the “Data Source” section and we’re good. Right? Unfortunately not.
    So, for example, I will go ahead and select my first link hidden field to populate the form. Here is what it looks like when I do:
    I then click “OK”. But it doesn’t work! Open the hyperlink properties again to see why:
    The “Link to” field has reverted back to the “Address” selection, losing all of your binding information. This is the field reversion link issue.
    ## Set Your Image URLS Dynamically (Field Reversion Work Around)
    Ingredients
    • InfoPath form
    • Form Links List populated with links
    • Image (or images) to link to queried URL values
    • Hidden fields containing URL values
    Steps
    1. Open your InfoPath form.
    2. Determine where on the form you wish to place the image.
    3. Open Windows Explorer and browse to your link image
    4. Right click on the Image and Choose “Copy”.
    5. Go back to your InfoPath form, click within the area you wish to have your image link, right click and choose “Paste”
    6. Your image should now appear on the form. Inserting an Image this way allows us to retain the data source binding. Click on the image if not selected already, and right click. Select “Hyperlink”
    7. Click the “Data Source” radio button.
    8. Select the Appropriate hidden link field and click “OK”
    9. Click “OK”. Now, if you open the hyperlink properties of this image, it will remember the binding. Copying and pasting allows the binding to be remembered. Inserting an image using the InfoPath Insert command does not.
    10. Repeat this process for each of the image/URL links you have in your form.
    11. Publish and test. You should be able to click the images in your form and have the appropriate URL open in a new window
    Regards
    Ankur

Maybe you are looking for