Issue attaching spry tooltip to anchor tag.

Hi
I'm trying to attach a spry tooltip to this tag.
<a href="'.$link.'" id="trigger">'.$job['name'].'</a>
The idea being dynamic data from database can be displayed in the tooltip when user hovers over the link.
I get the message 'you cannot insert a tooltip on the selected tag'.
Any ideas much appreciated.

Hi there
Why are you editing the JavaScript file? Did you know that when generating FlashHelp you have an option to turn off the Show link?
Additionally there are ways to link to topics so the TOC is visible and synchronized. These are described at this link right here.
Cheers... Rick
Begin learning RoboHelp HTML 7 within the day - $24.95!
Click here for Adobe Authorized Captivate and RoboHelp HTML Training
Click here for the SorcerStone Blog
Click here for RoboHelp and Captivate eBooks

Similar Messages

  • Help Needed re:Spry Tooltip and render issue with XP

    I have an issue with spry tooltip and XP not sure why ?
    Here it is I am designing/building a website for a restaurant, I am making use of the spry tooltip on the menu page as a rollover for a larger menu image to appear, which it does. Everything is cool in Vista etc. but if you are using XP for some reason the rollover effect only works once and then no more until the page is refreshed which is really annoying and certainly not the effect i am looking for. I know this is occuring because of this line of code :-
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"> which I need to keep in.
    Does ANYONE know a quick fix ? or ran into this problem before ?
    I am sure the attached .JS file is the key to fix.
    Thanks in advance
    Andy....!

    This is one of those situations you may need to see to believe,
    whats happening is only on an XP IE8 browser which the ******** client is looking at (what are the odds)?
    On newer systems and other browsers NO problem:-
    You bring up the menu page and mouse over spry triggers and it works PERFECTLY, but only ONCE when you try again the cursor flickers as the trigger is engaged and nothing is revealed? I am sure the spry is working but somehow it is being hidden from rendering correctly as if trapped behind another image or on a delay, and then when you mouse off maybe 500ms later the image flickers into view and dissappears almost instantly. (an obvious error of some sort)
    This only occurs when I place this source code in the head tags:-
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
    Without code works fine, but I need to include this code for it to look as it should cross browser.
    Ask me anything I will help as much as I can but right now I am at a loss !
    Thanks in advance
    Andy....!

  • Anchor tag inside Spry Tabbed Panel Content

    I have successful been able to use code I found listed on
    here to open a specific tab in a Spry Tabbed Panel form a link. Now
    I am wondering if anyone has found out how to add an anchor tag
    code this so that is goes to a specific location inside that Tabbed
    Panel Content?

    I was looking for an answer on how to open a tab from another tab and found it!
    In return I'll give you a hint on how to open a tab from another tab using an anchor
    for example,
    if you were working on a file named "projects.php"
    create an anchor in tab 2
    <a name="anchor1" id="anchor1"></a>come next to me
    in tab 1 create the link to the anchor in tab 2
    <a href="projects.php#anchor1" onclick="TabbedPanels1.showPanel(1); return false;">open tab 2 and go to its anchor 1</a>
    In your case you are overlooking the file name and jumping directly to the anchor name.....am I right??
    cheers from Lima, Perú

  • Performance issues with Spry

    Hi all,
    I'm facing some performance issues with Spry. I'm using it
    for handling a menubar acting as a rollover menu : its color
    changes under mouse cursor, and a submenu does appear at the same
    time.
    I have no problem when working with Firefox, but in IE6, it
    renders too slowly
    Is there something I've missed in the configuration or code
    (or is there some tips for this kind of problem) ?
    For information, I used UL and LI html tags, and I've
    configured Spry to render these as a menubar (with multiple levels)
    Thanks for your response

    Sorry, there are no public access to this application
    :-(

  • Not able to open document using anchor tag in firefox

    Hello Friends,
    I would really need your help in solving this issue.My application is deployed in server machine.
    I'm accessing the application through fire fox. In my application, i have a link where i need to open a document on click of it.
    For this, i am using html anchor tag.
    Eg:
    Test
    where IP is the server machine address and dir is the shared directory.
    It works in IE but didn't work in fire fox. Please help me out on to fix it.
    Cheers,
    Cap

    Try out to open doc using following link, {color:#ff0000}*use 5 back slashes instead of 2*
    {color}Test Link
    once you done the code change, close the browser and open a new browser and try it.
    Edited by: Thagelapally on Jul 17, 2009 6:05 AM

  • Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through j

    Certainly I realized that Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through jquery or javascript.
    e.g.
    In Felix Console , in Apache Sling JCR Resource Resolver configuration I have added following mapping.
    /content/myproject/-/
    So If any anchor tag is there like <a href="/content/myproject/en.html"> click me </a> then it will be mapped to "/en.html" automatically.
    But the problem is there in following scenario.
    I have an anchor tag as follows.
    <a href="#" id="test"> click here </a>
    And I am assigning the href to anchor through JQUERY.
    <script>
    $("#test").attr("href","/content/myproject/en.html");
    </script>
    Ideally this should have been mapped to "/en.html".
    But it is not mapping to "/en.html". It still shows "/content/myproject/en.html".
    How to resolve this.
    Thanks,
    Sai

    In a servlet you have access to the resourceResolver so if you know which attributes contain links then it's relatively easy to apply resourceResolver.map to those links.
    Your challenge is clearly how do you know which attributes are links and which aren't. Its is the same challenge that makes parsing the response and rewriting it on the way out difficult - the JSON doesn't have any semantic meaning so how do identify which attributes require rewriting. There really is no good answer ot that question in my experience - all the options have down sides.
    Create some convention - all attributes matching this pattern X get mapped before being converted to JSON (could be attributes whose name ends in link, or it could a convention applied to the value of the attribute - if the attribute is a string that starts with /content apply the resource resolver mapping. In this case you have train your developers to follow this convention which is the down side.
    Create some configurable list of attribute names that require mapping. This is brittle, requires training and is easy to break.
    Implement a client side version of the resource resolver mapping. It wouldn't be as full proof as server side mapping (because that takes into account but you could make it work for simple logic like stripping of /content/site/en. If ou are just trying to solve the simple version of this issue - stripping off the top of the repository path this might be your best option.
    Not worry about it and set up Apache 301 redirects that catch any long URLs and redirect them to short URLs (so configure apache to look for any URL matching /content/site/en and strip off /content/site/en and do a 301 redirect to the shortened URL. You end up with a lot of extra HTTP request because of all the 301s but it would work (I wouldn't recommend this option - but it is possible).

  • Error when adding Spry Tooltip to page with footer library

    I'm using Dreamweaver CS4 and the Spry menu to apply widgets.
    I was able to create a brand new page, import an image, and apply the Spry Tooltip widget successfully (as well as edit the CSS etc.).
    But I run into problems when I applied it to an image on my real page, which is pretty busy, and in columns etc. I select the same image and apply the Spry Tooltip. I get this error message:
    "Making this change would require changing code that is locked by a template or a translator. The change will be discarded."
    Searching online, it seemed to have something to do with a region that is not editable, like a template or library item. I'm not using Templates, but I did have a few library items. The Library for my footer, which included the script for Google Analytics, was what was causing the problems.
    It seems what Tooltip was trying to do was insert its script INSIDE the existing script in the Footer library - which is not editable. I needed to remove the Footer Library, apply the tooltip, then re-insert the Footer Library. This is how it needed to flow:
    <!-- close container div --></div>
    <!-- #BeginLibraryItem "/Library/footer.lbi" -->
    <div id="footer">
       <p>footer copy here</p>
    </div>
    <script type="text/javascript">
    blah blah google analytics stuff...
    </script>
    <!-- #EndLibraryItem -->
    <div class="tooltipContent" id="sprytooltip1">Tooltip content here.</div>
    <script type="text/javascript">
    <!--
    var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1", "#sprytrigger1");
    //-->
    </script>
    </body>
    </html>
    I think if the footer library didn't have a script in it, it would not have been an issue. It's just that the </script> was right before the </body> and it figured it could just insert the Spry code there.
    I wasted an hour troubleshooting this - I wish Dreamweaver was smarter when it inserted widgets and would know where Library items started and stopped.

    Select your external drive in finder.
    press CMD and i
    an info windows will open - what is reported as "Format" ?
    anyway scroll down to the very bottom: "Sharing & Permissions"
    set everyone's privilege to "Read & Write" and choose to "Apply to all enclosed items"

  • Anchor tags to bookmarks within emails not working in Office365 OWA web portal

    r years, we've had longer newsletter-style emails which include links throughout the email such as "<a href="#action">please take our action today</>" and then we include "<a id="action" name="action"></a>"
    in that section of the email.  This works in all email clients we've used for years, including Outlook 2010 and hotmail - including the recent upgrades.
    However, in the Outlook 365 web portal, it converts the href anchor tags to plain text, appearing as "[#action]please take our action today"
    in both the "preview panel" as well as when you double click the message to open in a new window.  
    Fascinatingly, this same email will both view fine when viewed from the Outlook 2010 desktop AND when you forward this message from the web portal, it shows fine in the Compose window.
    And recipients of that message can of course see and use the bookmark anchor links properly.
    We upgraded about a month ago to the latest version of Office 365.  We are using an Office 365 Enterprise E1 for Exchange license.
    This behavior happens consistently on Macs and PC browsers, in IE, Chrome, Mozilla, Safari.
    Help!

    r years, we've had longer newsletter-style emails which include links throughout the email such as "<a href="#action">please take our action today</>" and then we include "<a id="action" name="action"></a>" in that section
    of the email.  This works in all email clients we've used for years, including Outlook 2010 and hotmail - including the recent upgrades.
    However, in the Outlook 365 web portal, it converts the href anchor tags to plain text, appearing as "[#action]please take our action today"
    in both the "preview panel" as well as when you double click the message to open in a new window.  
    Fascinatingly, this same email will both view fine when viewed from the Outlook 2010 desktop AND when you forward this message from the web portal, it shows fine in the Compose window.
    And recipients of that message can of course see and use the bookmark anchor links properly.
    We upgraded about a month ago to the latest version of Office 365.  We are using an Office 365 Enterprise E1 for Exchange license.
    This behavior happens consistently on Macs and PC browsers, in IE, Chrome, Mozilla, Safari.
    Help!
    This issue still occurs in Exchange 2013 CU3 Version 15.0 (Build 775.38).

  • Anchor tag-line moving on hover in IE6.

    Hi Folks,
    Does anybody know if there is an issue with IE6 anchor tag
    lines moving on hover?
    I've got a sliding panel widget with an anchor tag line
    inside of an AP DIV TR TD (first | previous | next | last);
    initially displaying skewed, but then popping into perfect position
    as soon as the mouse hovers over one of the links; Then slides the
    panels
    fine, then goes back to the skewed position until it's
    hovered on again... This problem is not occuring in IE7, FF, N9.
    - GR

    Solved it by putting a width and height on the parent table.
    I guess IE6 is not as forgiving as IE7...

  • Hyperlink set to open new window & jump to anchor tag, doesn't jump

    I am generating Flash Help output in RH7.
    We have content hyperlinks that are set to open in a new window (target="_blank") and jump to an anchor tag in the destination topic (a href="newwindowtopic.htm#anchor")
    This works fine if I compile the file as is.
    However, we edit the whtopic.js topic in order to remove the "Show" link that appears when you open context sensitive topics. We do this by adding the following code at the end or the addShowButton function:
    setRelStartPage("ourstartpage.htm");
    show();
    Replacing the Show link worked fine in RH5 and it works fine in RH7. However, in RH7 when we replace the "show" link to have the TOC load when all topics are called (not just the start page), the ability to open a new window AND jump to the anchor tag is no longer working. When you click the hyperlink the new page opens, but only to the top of the page, not to the bookmark (anchor). The anchor jump does work if the hyperlink is set to open in the current window in RH7.
    The issue exists in IE7 and Firefox.
    Any ideas?

    Hi there
    Why are you editing the JavaScript file? Did you know that when generating FlashHelp you have an option to turn off the Show link?
    Additionally there are ways to link to topics so the TOC is visible and synchronized. These are described at this link right here.
    Cheers... Rick
    Begin learning RoboHelp HTML 7 within the day - $24.95!
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Anchor tag in txt file

    is there any way that i could include a link that has
    punctuation characters inside of an anchor tag of an externally
    loaded txt file. something like this <a href='
    http://www.dailymotion.com/relevance/search/leah%2Bdizon/video/x18dj1_leah-dizon'>click</a >.
    i noticed that txt files loaded into flash seem to break at any
    point where more unusual punctuation characters are
    included.

    This is such a great solution--thanks so much for sharing.  I'm having a problem with the name of my collapsible panels (which operate similarly to Tabbed Panels, as far as I understand).  Basically I am trying to use anchor tags and my goal is to create a hyperlink on page 1 that points to content within a spry widget on page 2 of my webpage.  I obviously want the spry widget on page 2 to open up on click and the user to be taken to where my anchor tag is located.  In this thread (http://forums.adobe.com/message/209107#209107), Mr. Celic seems to indicate using something like this:
    <a href="#anchorname" onclick="TabbedPanels1.showPanel(2);">
    My exact code is like this:     <a href="pagetwo.html#myanchortag" onclick="CollapsiblePanel1.open();">content here</a>
    The good news is that this works, but my problem is that page 1 of my website also has a CollapsiblePanel1 so when I click on the link above, CollapsiblePanel1 on page 1 opens, not the CollapsiblePanel1 on page 2 of my site.  I went into page 2 and clicked on "CollapsiblePanel1" and in the "Properties" panel renamed it to "CollapsiblePanel11" then changed my code to
    <a href="pagetwo.html#myanchortag" onclick="CollapsiblePanel11.open();">content here</a>
    but that didn't do a thing!  I'm super stuck and don't know how else to rename the collapsible panels or how to get it to work.
    One thing I can't figure out from the original solution (<a href="#" onclick="TabbedPanels1.showPanel(2);">) is what is "showPanel(2)"? Where did she get this from/where can I find the equivalent for my collapsible panel spry? This could be where I'm going wrong.
    Any thoughts would be greatly appreciated.
    Thanks so much! Catherine

  • Anchor Tag In Tabbed Panel Content

    I used this code to jump to and open the tab. I would like to
    add an anchor tag name to it so that it jumps to a specific section
    I have named in the content panel.
    <a href="#" onclick="TabbedPanels1.showPanel(2); return
    false;">
    This solution does not work:
    <a href="#anchorname" onclick="TabbedPanels1.showPanel(2);
    return false;">
    Has anyone found a work around for this?

    This is such a great solution--thanks so much for sharing.  I'm having a problem with the name of my collapsible panels (which operate similarly to Tabbed Panels, as far as I understand).  Basically I am trying to use anchor tags and my goal is to create a hyperlink on page 1 that points to content within a spry widget on page 2 of my webpage.  I obviously want the spry widget on page 2 to open up on click and the user to be taken to where my anchor tag is located.  In this thread (http://forums.adobe.com/message/209107#209107), Mr. Celic seems to indicate using something like this:
    <a href="#anchorname" onclick="TabbedPanels1.showPanel(2);">
    My exact code is like this:     <a href="pagetwo.html#myanchortag" onclick="CollapsiblePanel1.open();">content here</a>
    The good news is that this works, but my problem is that page 1 of my website also has a CollapsiblePanel1 so when I click on the link above, CollapsiblePanel1 on page 1 opens, not the CollapsiblePanel1 on page 2 of my site.  I went into page 2 and clicked on "CollapsiblePanel1" and in the "Properties" panel renamed it to "CollapsiblePanel11" then changed my code to
    <a href="pagetwo.html#myanchortag" onclick="CollapsiblePanel11.open();">content here</a>
    but that didn't do a thing!  I'm super stuck and don't know how else to rename the collapsible panels or how to get it to work.
    One thing I can't figure out from the original solution (<a href="#" onclick="TabbedPanels1.showPanel(2);">) is what is "showPanel(2)"? Where did she get this from/where can I find the equivalent for my collapsible panel spry? This could be where I'm going wrong.
    Any thoughts would be greatly appreciated.
    Thanks so much! Catherine

  • Problem with Anchor tag in windows Chineese XP OS

    Hi ,
    In my application I use an anchor tag to point to save item once page is submitted and reloaded.
    The URL with anchor is generated by the servelet dynmically
    URL will be something like this
    loaclhost:8080/myapp/CartonPlannerLoad?shipCode=996#2
    This works fine in Windows XP English OS.
    however when i ran the application in traditional chinese windows XP version it gives a java script error when the page is loaded.
    English translation of the error in chinese is
    "Wrong: Has not used the jurisdiction formula code"
    When i takeoff the #2(the anchor) and refresh page loads without any errors.
    How can i fix this issue while using the anchor tag.
    Is it due to the charset i have used. The jsp page i am loading consists of several includes. all the pages I have defined content type as follws
    contentType="text/html; charset=iso-8859-1"
    Could you plaese help me to fix this issue.
    Thanks in advance

    Hi ,
    In my application I use an anchor tag to point to save item once page is submitted and reloaded.
    The URL with anchor is generated by the servelet dynmically
    URL will be something like this
    loaclhost:8080/myapp/CartonPlannerLoad?shipCode=996#2
    This works fine in Windows XP English OS.
    however when i ran the application in traditional chinese windows XP version it gives a java script error when the page is loaded.
    English translation of the error in chinese is
    "Wrong: Has not used the jurisdiction formula code"
    When i takeoff the #2(the anchor) and refresh page loads without any errors.
    How can i fix this issue while using the anchor tag.
    Is it due to the charset i have used. The jsp page i am loading consists of several includes. all the pages I have defined content type as follws
    contentType="text/html; charset=iso-8859-1"
    Could you plaese help me to fix this issue.
    Thanks in advance

  • WPC anchor tags

    Having an issue with WPC and hoping one of you can help. There is a WPC web page containing content in four sections, top is HTML, second section is an iview and third section is another html and the last one is an iview. There are links in other locations needing to jump to the content in third section. Anchor tag seemed to be ignored, do any one of you know a solution?

    Hi Colum,
    Thank you for the welcome and the response.
    All I'm trying to find out is the URL to load the
    Frequently_Asked_Questions.htm page directly at the #Question_two
    anchor inside of the index.htm FlashHelp shell.
    In Robohelp x5, this used to be
    index.htm#Frequently_Asked_Questions.htm#Question_two
    With Robohelp 7, this url stopped working.
    I can load the FAQ page inside of the shell with
    index.htm#Frequently_Asked_Questions.htm
    I can load the FAQ page to the Question_two ancor without the
    index.htm shell with
    Frequently_Asked_Questions.htm#Question_two
    But I can't figure out any link that loads the Question_two
    anchor at the top of the FAQ page inside of the index.htm shell. In
    Robohelp 7, index.htm#Frequently_Asked_Questions.htm#Question_two
    just loads the FAQ page at the top.
    Thanks for your help,
    RoboHurt

  • Onclick of anchor tag inside the search suggestions div not working in Control_SearchBox display template

    Hi,
    I have added an anchor tag highlighted below in the Suggestion section of Control_SearchBox display template.The requirement is to display an anchor tag inside the div which displays suggestions and redirect the anchor tag to a predefined URL value.The problem
    here is the onclick of the anchor tag is not getting redirected to the href value.
    Can anyone help me out with this?
    <!--#_
                if (showQuerySuggestions) {
    _#-->
    <div ms-shadow" id="AutoCompContainer">
    <div id="_#= $htmlEncode(suggestionsListId) =#_">                  
    </div>
    <a  target="_blank" id="test" title="testing" href="http://www.google.com">Suggestions</a>                
    </div>
    <!--#_
    Thanks,
    Saranya

    This one had me pulling my hair out. For someone's future reference, I may have found a solution via google, using this page:
    http://www.ejeliot.com/blog/59. I added an empty div below my floated child divs and added clear:both
    to it. I think I may be okay on this issue now.

Maybe you are looking for

  • Message Spiltting Without Using BPM in XI-7.0

    We are using XI-7.0. We need to spilt the message from 1 to many without using BPM based on following conditions. We need to spilt the one message in many messages depending on the segment records of ZORDER3 and ZORDER2. If IDOC message do not have s

  • Adobe Air 3.0 iOS streaming H264/Speex over RTMP -- No Video

    Problem: H264/Speex RTMP stream from Flash Media Server doesn't display video.  Audio plays fine. Conditions: Adobe Air 3.0 iOS device (iPad 2, iOS4.3) App settings: <renderMode>direct</renderMode> Flash Builder 4.5.1 compiler settings: -swf-version=

  • Sound Effects DURING Slide Transitions?

    Essentially, is there a way to add a sound clip to play between slides, during the transition? I'm creating a Keynote presentation that will be exported into Quicktime with hyperlink-activated transitions, and would like a specific sound to play duri

  • Edited Flash Website Template Won't Accept Changes When Published.

    Hi, All, I didn't think this was going to be so difficult.  After I purchased and downloaded a "complete flash website template" file from the internet, I uploaded the file into my local_site file and then into Dreamweaver 8 The template included fil

  • Query Limits - Max Time not working

    A Max Time Query Limit has been set for a DB but it never acknowledges it and the query carries on running in the underlying DB even after cancelling the query, and closing the browser. Has anyone seen this before? The Max Time is enabled, and the co