URL Link on Image

I'd like my logo to redirect back to my home page. I know how to do it on report columns.
Thanks in advance for your help.
Alexandra

Are you using 4.1? When you specify the logo, it should automatically link to the 'HOME_LINK'.
e.g. my page template has:
<div id="header">
  <div id="logo"><a href="#HOME_LINK#">#LOGO##REGION_POSITION_06#</a></div>
  #REGION_POSITION_07#
  <div id="navbar">So that it automatically links to the specified home link when you define a logo. Or you can just modify the page template to include this if it isn't there already.
And you can modify the home link by going to: Application Properties (Definition) -> Security Tab

Similar Messages

  • FM for fetching file type by providing the URL link for file.

    Hi All,
    We have a requirement to fetching file type of image viz .jpg,.bmp,.tiff by providing the URL link to image.
    For example
    http://AttachmentWebsite/AttachmentWebsite.aspx?Num=ATT-F19220090818095048&Ext=.JPG&RC=N
    Is there any FM to fetch file type from link.
    regards,
    Nitin
    Edited by: Nitin Sikka on Aug 20, 2009 8:35 AM

    diff URLs. but if they contain the pattern "EXT*=.<extn name>" then the above code will work
    else you have to search for all formats.
    data:res type MATCH_RESULT,
    DATA : s1 type string VALUE 'http://go2ntlweb14/AttachmentWebsite/AttachmentWebsite.aspx?Num=ATT-F19220090818095048&Ext*=.JPG*&RC=N '.
    FIND first OCCURRENCE OF REGEX '.(JPG|TIFF|PNG|JPEG|BMP)' in s1 RESULTS res.
    if sy-subrc is INITIAL.
    SHIFT s1 by res-offset PLACES.
    endif.
    WRITE : s1+0(4).

  • How to display URL images and URL link (html) from Smartforms?

    Hi Gurus,
    I'm having difficulty on how to display targeted URL images and URL link from the smartforms, after i sending it out as html mail. The mail i sent just can be preview as a plain text, which can't execute the html code that i put inside the smartforms itself. I follow a few step from this very useful blog.. Hopefully, you guys can give me some solutions or ideas on this.
    /people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp -thanks to Pavan for his useful blog.
    My code is like this..
    <--- Start Code.
    FORM call_smartforms.
      DATA : lv_subject TYPE so_obj_des,
             lc_true(1) VALUE 'X',
             lw_control_parameters TYPE ssfctrlop,
             lw_output_options TYPE ssfcompop,
             lc_graphics(8) VALUE 'GRAPHICS',
             lw_xsfparam_line TYPE ssfxsfp,
             lc_extract(7) VALUE 'EXTRACT',
             lc_graphics_directory(18) VALUE 'GRAPHICS-DIRECTORY',
             lc_mygraphics(11) VALUE 'mygraphics/',
             lc_content_id(10) VALUE 'CONTENT-ID',
             lc_enable(6) VALUE 'ENABLE',
             lw_job_output_info TYPE ssfcrescl,
             lw_html_data TYPE trfresult,
             lw_graphics TYPE ssf_xsf_gr,
             lt_graphics TYPE tsf_xsf_gr,
             lv_html_xstr TYPE xstring,
             lw_html_raw LIKE LINE OF lw_html_data-content,
             lv_incode TYPE tcp00-cpcodepage VALUE '4110',
             lv_html_str TYPE string,
             lv_html_len TYPE i,
             lc_utf8(5) VALUE 'utf-8',
             lc_latin1(6) VALUE 'latin1',
             lv_offset TYPE i,
             lv_length TYPE i,
             lv_diff TYPE i,
             lt_soli TYPE soli_tab,
             lw_soli TYPE soli,
             lc_mime_helper TYPE REF TO cl_gbt_multirelated_service,
             lv_name TYPE mime_text VALUE 'sapwebform.htm',
             lv_xstr TYPE xstring,
             lw_raw TYPE bapiconten,
             lt_solix TYPE solix_tab,
             lw_solix TYPE solix,
             lv_filename TYPE string,
             lv_content_id TYPE string,
             lv_content_type TYPE w3conttype,
             lv_obj_len TYPE so_obj_len,
             lv_bmp TYPE so_fileext VALUE 'BMP',
             lv_description TYPE so_obj_des VALUE 'Graphic in BMP format',
             lc_doc_bcs TYPE REF TO cl_document_bcs,
             lc_bcs TYPE REF TO cl_bcs,
             lc_send_exception TYPE REF TO cx_root,
             lw_adsmtp TYPE lty_adsmtp,
             lv_mail_address TYPE ad_smtpadr,
             lc_recipient TYPE REF TO if_recipient_bcs,
             lc_send_request TYPE REF TO cl_bcs,
             lv_sent_to_all TYPE os_boolean.
      DATA : v_language TYPE sflangu VALUE 'E',
             v_e_devtype TYPE rspoptype.
      v_form_name = 'ZTEST_EMAIL'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = v_form_name
        IMPORTING
          fm_name            = v_namef
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    starting here. ***
    Set title for the output
      lv_subject = 'Smartforms.'.
    Set control parameters to "no dialog"
      lw_control_parameters-no_dialog = lc_true.
    IF lw_service_subject-code = lc_fm1.
    *--- To get output device type
      CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
        EXPORTING
          i_language    = v_language
          i_application = 'SAPDEFAULT'
        IMPORTING
          e_devtype     = v_e_devtype.
      lw_output_options-tdprinter = v_e_devtype.
      lw_control_parameters-getotf = 'X'.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    Set output options
      lw_output_options-xsf        = lc_true.
      lw_output_options-xsfcmode   = lc_true.
      lw_output_options-xsfoutmode = 'A'.
      lw_output_options-xsfoutdev  = space.
      lw_output_options-xsfformat  = lc_true.
      lw_xsfparam_line-name  = lc_graphics.
      lw_xsfparam_line-value = lc_extract.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_graphics_directory.
      lw_xsfparam_line-value = lc_mygraphics.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_content_id.
      lw_xsfparam_line-value = lc_enable.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
    Get the smartform content
      CALL FUNCTION v_namef
        EXPORTING
          control_parameters   = lw_control_parameters
          output_options       = lw_output_options
    *pass other application specific parameters (eg order number, items ).
      IMPORTING
          job_output_info    = lw_job_output_info
      TABLES
          tt_tabh              = tt_tabh
          tt_tabb              = tt_tabb
          tt_tabf              = tt_tabf
      EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
      lw_html_data  = lw_job_output_info-xmloutput-trfresult.
      lt_graphics[] = lw_job_output_info-xmloutput-xsfgr[].
      CLEAR lv_html_xstr.
      LOOP AT lw_html_data-content INTO lw_html_raw.
        CONCATENATE lv_html_xstr lw_html_raw INTO lv_html_xstr IN BYTE MODE.
      ENDLOOP.
      lv_html_xstr = lv_html_xstr(lw_html_data-length).
      CALL FUNCTION 'SCP_TRANSLATE_CHARS'
        EXPORTING
          inbuff       = lv_html_xstr
          incode       = lv_incode
          csubst       = lc_true
          substc_space = lc_true
        IMPORTING
          outbuff      = lv_html_str
          outused      = lv_html_len
        EXCEPTIONS
          OTHERS       = 1.
    *HACK THE HTML CODE GENERATED BY SMARTFORM TO MAKE THE
    *EXTERNAL IMAGES APPEAR AS <IMG> TAG IN HTML
      REPLACE ALL OCCURRENCES OF '<IMG' IN lv_html_str WITH '<IMG' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '/>' IN lv_html_str WITH '/>' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '</A>' IN lv_html_str WITH '' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '<' IN lv_html_str WITH '<' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '>' IN lv_html_str WITH '>' IGNORING CASE.
    CALL METHOD html_control - >load_mime_object
       EXPORTING
         object_id  = 'ZWN'
         object_url = 'ZWN.GIF'
       EXCEPTIONS
         OTHERS     = 1.
      REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH lc_latin1.
    REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH 'iso-8859-1'.
       break mhusin.
      lv_html_len = STRLEN( lv_html_str ).
      lv_offset = 0.
      lv_length = 255.
      WHILE lv_offset < lv_html_len.
        lv_diff = lv_html_len - lv_offset.
        IF lv_diff > lv_length.
          lw_soli-line = lv_html_str+lv_offset(lv_length).
        ELSE.
          lw_soli-line = lv_html_str+lv_offset(lv_diff).
        ENDIF.
        APPEND lw_soli TO lt_soli.
        ADD lv_length TO lv_offset.
      ENDWHILE.
      CREATE OBJECT lc_mime_helper.
      CALL METHOD lc_mime_helper->set_main_html
        EXPORTING
          content     = lt_soli
          filename    = lv_name
          description = lv_subject.
      LOOP AT lt_graphics INTO lw_graphics.
        CLEAR lv_xstr.
        LOOP AT lw_graphics-content INTO lw_raw.
          CONCATENATE lv_xstr lw_raw-line INTO lv_xstr IN BYTE MODE.
        ENDLOOP.
        lv_xstr = lv_xstr(lw_graphics-length).
        lv_offset = 0.
        lv_length = 255.
        CLEAR lt_solix[].
        WHILE lv_offset < lw_graphics-length.
          lv_diff = lw_graphics-length - lv_offset.
          IF lv_diff > lv_length.
            lw_solix-line = lv_xstr+lv_offset(lv_length).
          ELSE.
            lw_solix-line = lv_xstr+lv_offset(lv_diff).
          ENDIF.
          APPEND lw_solix TO lt_solix.
          ADD lv_length TO lv_offset.
        ENDWHILE.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_filename.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_content_id.
        lv_content_type = lw_graphics-httptype.
        lv_obj_len      = lw_graphics-length.
    *Add images to the email
        CALL METHOD lc_mime_helper->add_binary_part
          EXPORTING
            content      = lt_solix
            filename     = lv_filename
            extension    = lv_bmp
            description  = lv_description
            content_type = lv_content_type
            length       = lv_obj_len
            content_id   = lv_content_id.
      ENDLOOP.
      TRY.
          lv_subject = lv_subject.
          lc_doc_bcs = cl_document_bcs=>create_from_multirelated(
                   i_subject          = lv_subject
                   i_multirel_service = lc_mime_helper ).
        CATCH cx_document_bcs INTO lc_send_exception.
        CATCH cx_bcom_mime INTO lc_send_exception.
        CATCH cx_gbt_mime INTO lc_send_exception.
      ENDTRY.
    Create send request
      TRY.
          lc_bcs = cl_bcs=>create_persistent( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->set_document( i_document = lc_doc_bcs ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Set-up email receiver
      lv_mail_address = '[email protected]'.
    TRANSLATE lv_mail_address TO UPPER CASE.
      TRY.
          lc_recipient = cl_cam_address_bcs=>create_internet_address(
              i_address_string = lv_mail_address ).
        CATCH cx_address_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->add_recipient( i_recipient = lc_recipient ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Send smartforms as HTML email
      TRY.
          lc_bcs->send( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      COMMIT WORK.
      WRITE:/ 'Mail sent'.
    ENDFORM.                    "call_smartforms
    End Code --->
    Thanks and Regards.

    1- put your images in a directory under the web app directory. Example: app/images/
    2- in your jsp, use: String file = application.getRealPath("/images/"); to get the images directory. See http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/ServletContext.html#getRealPath(java.lang.String)
    3- it's not the right forum to post this kind of question. Post them in the JSP/Servlet JSTL forum instead

  • How do I not show image file name, only url link - Acrobat Pro 9

    Both file name and url ink show when placing cursor over image. I want to only have url link appear.
    And if that's not possible, I want to then change the image file name. Any ideas?

    Use a button field for the link. You will have to add the action or JS code to open the link.

  • Image with url link

    hi..
    i have an image in my jframe and i want to link the image to an url address.
    can anyone help me with this?
    thanks

    Hi, Find the following code which can help you to invoke the browser. Put these code in the action performed method of your button.
    Process browserprocess = null;
    //browserPath represents the exe path of Internet Explorer
    String browserPath = "C:\\Program Files\\Plus!\\Microsoft Internet\\Iexplore.exe";
    String path = "c:/intellidocresources/demographics/path.PROPERTIES";
    String filePath = "www.google.com;
    String temp = browserPath + " " + filePath;
    browserprocess = Runtime.getRuntime().exec(temp);
    Bye.
    R.Vishnu Varadhan

  • Link URL's to images in uiloader

    Hello - I've got a flash page where a uiloader uses 10 different images.  Wondering if I can assign a url to each image so that when they load, the viewer could click to follow the link.  Any suggestions?

    you can use navigateToURL() to add url links.  it's easiest to add each loader to a movieclip and assign mouse listeners to the movieclip.

  • How to make an URL link in tabel connected to text or image?

    I have a tabel with cells. in each cell is a picture and the name of twitter accounts. Just like a Vcard
    Now I want to link the image or/and the accountname to the webpage of that twitter account.
    This doesn't seem to work in the normal link way option.
    Some one already solved this?
    I was thinking of a hidden text frame with white color or no color but that doesn't seem to work either.
    Can't accept that this is not possible....
    Need it for a twitterpage of astronauts for my book @astro_andre
    http://itunes.apple.com/nl/book/astro-andre/id502369424?mt=11

    Those links can only be local to the book as I recall...

  • With version 3.6.3 I can no longer do a right click with the mouse and check the properties of a live url link on web pages

    Windows XP Pro, SP3. Firefox 3.6.3. Ever since updating to this version a few weeks ago I can no longer do a right click of the mouse and check the properties of an active url link on webpages. I've always had the option before. I want this feature back!!!!

    In Firefox 3.6 Properties has been removed from the right click context menu.
    You can use ''View Image Info'' or ''View Page Info'' in the right click context menu to see the (image) properties.
    You can use the above mentioned extension (Element Properties 6) to get that context menu item back.
    See also Link And Forminfo: https://addons.mozilla.org/firefox/addon/6939

  • IC Webclient URL Link Problem

    Hi All experts,
    I was trying to create a URL link for individual invoice in IC Webclient showing in a table.
    My expectation is that when I click on this link, it would
    bring up or open another browser with the real invoice
    image apprearing.
    How can I implement this?
    Any configuration needs to be done in Archiving.
    Input is very much appreciated!
    Bin

    Hi Andi,
        You havent this functionality, because you arent execute a internet explorer you only show a url. Maybe your can write a bsp and with a custom development..add this buttons.
    Regards.
    Manuel

  • Way the url of the images are absolute in km?

    Hi!
    I am having some trouble with the url's of the images that I insert in a html page on KM. Specifically, when I insert a new image, the URL of it is absolute!!
    I mean:
    http://<host>:<port>/irj/go/km/docs/documents/imagename.gif
    I edited the url and remove the http://<host>:<port> so I get the relative url
    /irj/go/km/docs/documents/imagename.gif
    but when I save the settings, the system insert the hostname and port.....making the url absolute again!!
    Is this a bug or I making a mistake?
    The real problem arises when I transport the KM Content (using ICE), becouse after the transport, the url of the image in the new system keep being absolute... and keep referencing to the original hostname and port!!!
    could anybody give me a tip or some advice???
    thanks in advace!!!
    best regards
    Marcelo
    pd: I am working on EP 7 SP 11

    Hi Marcelo,
    This is strange. We always insert links to images like "/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/images/test.gif", and it works ok in all environments.  This link dynamically adds the <host>:<port> from the environment where it is being accessed from.
    Are you seeing the <host>:<port> when you look at the source code of the page after it has been rendered?
    Regards,
    Harman

  • Url link in UI

    Hello everyone,
    I am writing my first script and I have run into a problem.  In my UI I have included an image that I would like to turn into a URL link.
    I think this is possible, as I have seen buttons as URL links.
    Can anyone help?
    Thanks a million,
    Tyler

    Here is an example of what I use to display a web page (to run directly from After Effects) :
    var win = new Window ("dialog");
    var winBrowserCmd = "C:/Program Files/Internet Explorer/iexplore.exe";
    var macBrowserCmdStart = "osascript -e 'open location \"";
    var macBrowserCmdEnd = "\"'";
    var BtnURL = win.add("button", undefined, "Check for update"); // var BtnURL = win.add ("iconbutton", undefined, "~/Desktop/img.png" );
    BtnURL.onClick = LinkToURL;
    win.add ("button", undefined, "Close", {name: "ok"});
    function LinkToURL()
                var URL = "http://www.google.fr/"; // your web page
                if ($.os.indexOf("Windows") != -1)
                    system.callSystem(winBrowserCmd + " " + URL);
                else
                    system.callSystem(macBrowserCmdStart + URL + macBrowserCmdEnd);
    win.show ();

  • How to add URL links in XML file?

    Hi,
    I'm having problem with adding the URL links to the flash output. I'm using the XML file to call images and then the corrsponding links. Images are called correctly but when I try to add a link I'm not getting the links, but instead getting the HTML anchor tags as texts. I'm using the XML escape characters to escape the HTML tags but the results are not what I need.
    I'm using the following code:
    <thumbnail preview="large.jpg" thumb="thumb.jpg">
                <title><![CDATA[Finance Services]]></title>
                <discription><![CDATA[&lt;a href=&quot;http://www.google.ca">Google</a>]]></discription>
    </thumbnail>
    Output:
    Images are displayed correctly, but instead of getting the links, I'm getting following text message:
    <a href="http://www.google.ca">Google</a>
    I need to find out what I'm doing wrong. Am I using the correct way to add the links or not?
    Thanks for your time.

    I'm using following code for the Description part, where I need to place the HTML tags:
    var _discription:TextField = previewHolder.discriptionText.discriptionText;
    _discription.htmlText = _xml.thumbnails.thumbnail[photoNum].discription.toString()
    I'm using the htmlText, I tried replacing htmlText with tf.htmlText, but it didn't work. I'm importing the text field using import flash.text.TextField; do I need to import something for HTML tags to work?

  • Flash CS5 Newbie - Need help adding URL link to animated banner

    I apologize if this is a very basic question, but I am a newbie at designing in Flash. I have created a basic animation in Flash CS5 and I need to add a clickable URL link to it. I've tried a few tutorials that looked promising, but none of them solved my problem. I've tried a number of things including converting parts or all of the images to simple buttons or movies and linking them that way as well as typing in code for ActionScript 2 and 3, none of which were successful. The animation plays correctly when viewed in my browser, but when I click on it, the link does not work. I would prefer that the entire banner be clickable to take viewers to the linked website rather than using hyperlinked text. Also, when I open the Code Snippets window, it is empty, no matter what image or frame I've selected. Do I need to import code snippets from somewhere or am I simply going about things the wrong way? Any help is greatly appreciated!

    It all depends whether you're decisively using AS2.0 or AS3.0 .
    In the latter, you would need to use a URLRequest() method in conjunction with a navigateToUrl() call (not sure the exact syntax for navigate to Url, it might be a capitalized "URL" in the method but the request takes a String argument such as http://www.adobe.com)

  • Add url link in "lightbox style" js gallery

    Hello,
    Can someone help me add a url link in the image description? I am using an "overlay" gallery (prettyphoto) and want viewers to be able to visit a site instead of going to the next image when clicked on images that are websites.
    CSS Code I am using:
    <li><a href="images/work/work-full1.jpg" rel="prettyPhoto[1]" title="Trade Show Panels - 2011"><img src="images/work/work-thumb1.jpg"></a></li>
    <li><a href="images/work/work-full2.jpg" rel="prettyPhoto[1]" title="Local Resource Website - Lake Wylie, SC"><img src="images/work/work-thumb2.jpg"></a></li>
    and so on...
    View gallery in action here:
    click on the work tab.
    http://doubleulabs.com/
    Thanks for any help on this.

    I no longer use lightbox.  I prefer Fancybox because you can do more with it.  Copy & paste  this code into a new, blank document.  SaveAs test.html and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5, with Fancybox2 and Captions</title>
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--LATEST JQUERY CORE LIBRARY-->
    <script src="http://code.jquery.com/jquery-latest.min.js"></script>
    <!--FANCYBOX plugins-->
    <link href="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.css" rel="stylesheet" media="screen">
    <script src="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.pack.js"></script>
    <style>
    /**LINKS**/
    a {text-decoration:none}
    a:link {color:#FF0}
    a:visited {color:#920000}
    a:hover, a:active, a:focus {text-decoration:underline}
    /**this styles image container**/
    #thumbs p {
        float: left;
        width: 180px;
        margin: 10px;
        padding: 10px;
        text-align: center;
        border: 1px solid silver;
        /**rounded borders**/
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
    /**recommend using same size images**/
    #thumbs img {
        width: 160px; /**adjust width to thumbnail**/
        height: 120px; /**adjust height to thumbnail**/
        opacity: 0.75;
    #thumbs img:hover { opacity: 1.0 }
    /**float clearing**/
    #thumbs:after {
        content: ".";
        clear: left;
        font-size: 0px;
        line-height: 0;
        display: block;
        visibility: hidden;
    </style>
    </head>
    <body>
    <h1><a href="http://fancyapps.com/fancybox/">Fancybox2</a> Viewer with images</h1>
    <h2>Captions contain text and links</h2>
    <div id="thumbs">
    <!--insert thumbnails with links to full size images below-->
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 1" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 2" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 3" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 4" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 5" /></a> </p>
    <!--end thumbs--></div>
    <!--FancyBox function code-->
    <script>
    $(document).ready(function() {
        $(".fancybox")
        .attr('rel', 'gallery')
        .fancybox({
         beforeLoad: function() {
         this.title = $(this.element).attr('caption');
    </script>
    </body>
    </html>
    Nancy O.

  • EMBED URL link in Illustrator

    I found that many people are searching a way to add an URL link to a .AI file that works after exporting to PDF.
    The only way seems to place a text field with the complete URL (for ex.  a youtube link: http://www.youtube.com/watch?v=3c7-EPNTnPI).
    In my case I prefered show an alternate text instead of a long URL, for example a better "WATCH THE VIDEO". My method consist in simply arrange the URL text field (the only that works in PDF file) over the custom text, stretch it for perfect occupying the hot-spot you want and assigning a alpha 1% (do not set alpha 0% because this will make the text box inesixtense). This make it practically invisible but still clickable in the output PDF file. This method works also with an image under the "half-invisible URL" text.
    Hope this could help.

    no.
    clickTag is the variable that contains the url string.

Maybe you are looking for

  • Measurement value is not getting displayed

    i wrote the following code for my bdc.i want to check whether my flat file data got uploaded into my internal table.all field values are getting displayed in the output except measurement(field-meins).plz help report Z_PP_BDC1        no standard page

  • My mpd fail to start

    can you guys help me? No full size images. Read forum rules  -- Inxsible my /etc/mpd.conf # An example configuration file for MPD # See the mpd.conf man page for a more detailed description of each parameter. # Files and directories #################

  • Linked List and String Resources

    Linked Lists can be very slow when removing dynamic Strings. If you add and remove Strings in the following way, the performance is very poor: int n = 10000; long time = System.currentTimeMillis (); List list = new LinkedList(); for (int i = 0 ; i <

  • Recreate SAP and database services in Windows

    Hi! I'm running my sandbox in a wmware enviroment and yesterday the C: partion got corrupted and I managed to "save" the other drives where the SAP and database are installed. Is there any way to recreate the SAP and database services in another Wind

  • Creating Selection screen in Query Designer

    Hi all, I am New to BI . I need to know how do I put up a selection screen in the Bex Analyser? Regards, Shashank