Patch for slow spry tooltips

On larger pages with several tooltips on classes, the page
takes a long time to finish all of the javascript initialization.
This turns out to be caused by the time it takes spry to search the
DOM for objects with matching class names. I patched my copy of
SpryTooltip.js to add an option that allows you to restrict the
search to only certain types of objects. In my case, my tooltips
are always attached to img elements. So, I added a "triggerTag"
option to the tooltip constructor. This change helped reduce the
initialization from over 10 seconds down to less than 1.
Here's my modified call to constructing a tooltip:
new Spry.Widget.Tooltip('tooltip1', '.tooltip1', {hideDelay:
600, closeOnTooltipLeave: true, offsetX: "10", offsetY: "20",
useEffect: 'Fade',
triggerTag: 'img'});
The getElementsByClassName function in SpryTooltip.js is
modified to take a second argument that limits what tags get
searched:
quote:
Spry.Widget.Utils.getElementsByClassName = function(sel,
tagName)
var childs = parents[j][k].getElementsByTagName(tagName);
And then the Spry.Widget.Tooltip.prototype.init function is
modified so that options get initialized before the call to
Utils.setOptions. Then, this new tagName variable is passed to the
modified getElementsByClassName method.
quote:
Spry.Widget.Tooltip.prototype.init =
function(trigger_element, tooltip_element, options)
var Utils = Spry.Widget.Utils;
options.showDelay =
parseInt(Utils.firstValid(options.showDelay, 0), 10);
options.hideDelay =
parseInt(Utils.firstValid(options.hideDelay, 0), 10);
this.listenersAttached = false;
this.hoverClass = "";
this.followMouse = false;
this.offsetX = 15;
this.offsetY = 15;
this.closeOnTooltipLeave = false;
this.useEffect = false;
this.triggerTag = '*';
Utils.setOptions(this, options);
this.triggerElements =
Utils.getElementsByClassName(trigger_element, this.triggerTag);
this.tooltipElement = Utils.getElement(tooltip_element);
if (typeof this.triggerElements == 'undefined' ||
!(this.triggerElements.length > 0))
this.showError('The element(s) "' + trigger_element + '" do
not exist in the page');
return false;
if (typeof this.tooltipElement == 'undefined' ||
!this.tooltipElement)
this.showError('The element "' + tooltip_element + '" do not
exists in the page');
return false;
this.animator = null;

Hi PBSOakley,
You've  posted your question in a forum for BrowserLab, a web service for  cross-browser testing of web pages. I think you'll have much better luck  if you repost your question in the Spry forums here:http://forums.adobe.com/community/labs/spry
Hope this helps,
Mark

Similar Messages

  • Spry tooltip problem in IE 7 & IE 8

    Does the Spry tooltip have a browser incompatibility with IE 7 and IE 8, or is there something on my test page that interferes with the function of the tooltip?  
    I inserted a tooltip in this page using DW CS5--very straightforward as shown on every tutorial I have found:
    http://www.piie.com/dev/cite-this.htm
    Yet in IE 7 and IE 8, the tooltip appears at the bottom of the page at all times.  There is no activity when mousing over the trigger area ("Cite This", upper right of main content area).  It is as if the js / css files are not working, so I put in absolute paths for those files.
    In any event, I know that the js / css Spry tooltip files are live because in FF 3, the tooltip works exactly as expected.
    The Spry tooltip files I am using show they are the latest version, 1.6.1.
    Is this a browser bug, or is there something on my page that is interfering with the Spry tooltip in IE 7 and IE 8?  I have tried in vain to find any information.  Thanks for any pointers anyone can give me.

    I checked here to find out why my
    www.museumsforeningen-lf.dk works nicely with spry tooltips in firefox but not at all in explorer 8 (and didn't get any the wiser). the base jpg kind of jumps a bit but no
    tips or anything.  I've only just got my eyes on this spry tooltips - and have basically totally
    dumped using explorer myself because it's too troublesome whatever you want to do (reading papers without a gazillion errors in particular) but
    I need to accomodate the potential viewers who might use explorer (it's a
    museum 'friends of'' webpage).
    can this spry stuff work in explorer at all? I've tried using explorer without add-ons and with various settings in security but nothing worked. can something be done via the code - the old dears in the friends group probably aren't up to much change in settings on their browsers, but they sure do use the net.
    Freya

  • Need help in CS3 creating CS4 spry tooltip-like widgit

    I am extremely new to Dreamweaver and know very little HTML and no other codes and so please bear with me if I am using some terms incorrectly.
    I created an image map with hotspots. When I move the mouse over a hotspot I would like for a description box to come up with either an image and text, or just an image, whichever is easiest. I believe what I am trying to do is called an image tooltip?
    I've searched all over the internet to try and find step by step instructions or a video on this, but the closest I could find was the CS4 spry tooltip widgit, which is new to dreamweaver and not part of CS3. I figured out how to put a simple text tooltip on a hotspot using "alt" but that is too basic and I need at least an image instead when I put my mouse over the hotspot.

    I am extremely new to Dreamweaver and know very little HTML and no other codes
    Without an understanding of HTML and CSS, you will find Dreamweaver an uphill struggle.
    There are instructions to achieve what you want to do on the Spry website at http://labs.adobe.com/technologies/spry/samples/index.html. Scroll to the bottom of the page, and you'll see three links related to Spry tooltips. However, you'll have considerable difficulty implementing anything without a basic knowledge of HTML, CSS, and JavaScript. Dreamweaver is a professional tool for working with those technologies. It is not the magic wand that some people seem to expect. Spend a little time learning about web technologies, and Dreamweaver will become a joy to work with.

  • 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"

  • Spry Tooltip works in page 1, not in pg 2?

    New to Dreamweaver, so please forgive my learning curve stupidity regarding Spry and fancy stuff.
    I've created a Spry Tooltip series for a simple menu bar on my client's page. He wants to keep things clean and simple. The tooltips work fine on the front page of his test site here: http://www.approvalsourceleasing.com/test/myway.html
    However, clicking on the "contact" link (whick has no tooltip on it)  brings us to a new page using the SAME code as the first page (copy pasted) and then I simply added a new table underneath the original logo and menu with the tooltips. It can be found here: http://www.approvalsourceleasing.com/contact.html
    When I "preview in browser" via Dreamweaver the page displays properly, but when you click the link and view it for real it does not. The tooltips do not work, and the text for the tooltips is located on the bottom of the page--no error messages. I've tested this in IE and Firefox and I get the same result.
    I'm not sure what I did wrong.
    Thank you in advance!

    Yes, thank you. I figured it out late last night thankfully. My SpryAssets folder wasn't reading properly on the second page. I just needed to re-upload it.

  • Why is getting patches so slow

    We have a patch proxy setup to speed up installation of patches.
    But it struck me that downloading a patch for the first time to cache it is surprisingly slow.
    So I looked into it and observed that patch 113886-34 which was downloading at the time had taken 40 minutes to download about 25 Megs (of the 45 meg patch size). A speed which worked out at about 10k per second.
    So as a comparison I manually downloaded the jar file from sunsolve and it came through at about 300k per second.
    So why is downloading patches through smpatch update and a local patch proxy 30 times slower than downloading them manually.?

    Well, which one should it be ?
    By default, I have:
    patchpro.patch.source https://getupdates1.sun.com/
    Once in a while it complains due to a connection reset (it's a slow link on our end as well at this point but still)
    Since I have several systems with the same hardware, I've tried to set up a patch server. That one points to:
    Patch source URL: https://getupdates1.sun.com/solaris/
    But I also pointed to (as the instructions mention) to getupdates.sun.com
    At that time, I pointed the clients to:
    patchpro.patch.source http://xxx.xxx.xxx:3816/solaris/
    Yesterday afternoon all I would get where connection resets. Now it starts to download a couple of patches but eventually it dies.
    But I also noticed that some have it set to:
    patchpro.patch.source - https://updateserver.sun.com/solaris/
    So, which one should it be, a) for a direct connection and b) for the patch server.
    All boxes are solaris 10, and the ones I've tested do have the latest (rev. 8) update manager patch.
    Note that we have a SunSpectrum silver contract, so I'm not sure if we should be pointing this to somewhere else instead...
    Even with our slow link, I never have problems downloading patches via RHN for our other servers... I thought after 1.5 years this would be 'useful'
    In any case, smpatch get output is:
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://xxx.xxx.xxx:3816/solaris/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""

  • BFS patch for 2.6.35 (git linus kernel)

    Con Kolivas mantains a great patch for the linux kernel (check it out: http://ck.kolivas.org/patches/bfs/)
    However he can't port the patch every while to the latest kernel, so he often waits for stable releases.
    Since I really need to use 2.6.35 and don't want to miss BFS, I have ported his patch to 2.6.35, here is the result:
    http://www.iragan.com/linux/unofficial-BFS/
    Please notice that this is not guaranteed to work, although I am using it right now without any glitch.
    Enjoy!

    BFS patch doesn't work anymore on latest kernel (it has been some week now); I suppose there is some new subsystem which needs an adapted counterpart in the BFS patch.
    The system stucks some time during D-BUS initialization and the hangup is basically due to timers never releasing (some preemption issue?)
    Edit: Con Kolivas has provided a patch for 2.6.35 on 7 August, check it out. However it doesn't work because misses the fixes for slow-work.c and oom_kill.c
    Last edited by legolas558 (2010-08-21 07:43:23)

  • 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

  • Spry Tooltip is missing on Spry menu in CS3?

    I cannot find the Spry Tooltip on my Spry Menu in DW CS3? I have run the Site/Spry Updater but Tooltip is not listed?
    How do I add/update my DW Spry menu to include all available Spry Widgets, tools, etc?
    Thanks,
    jlig

    Arnout, Thanks for the reply..
    However, I have read thru that document and still not sure how to:
    - Apply the Spry Tooltip widget to a small Image on my page
    I have already copied the two SpryTooltip.css & SpryTooltip.js files into my Spry folder & uploaded to the site
    Just not sure how to apply them to the Image?

  • Will there ever be patches for Flash 8?

    I just wondered if Adobe intends to issue patches for Flash 8
    instead of just Flashplayer. I reported bugs over a year ago that
    were taken up as existing and have not heard a word since. Does
    anyone know what is happening?
    Brian

    Walter,
    thanks for the reply. Yes - truly irritating!
    Although some can't be classified as true "bugs" but are
    clearly usability issues.
    I can add to that list with a few of my own - i will pick
    one:
    Properties Panel, the field that displays the frame number of
    a nested animation in a Graphic
    symbol. It is only wide enough to show 2 digits, so any
    nested animations 100 frames or longer will
    not show the entire number of frames - very annoying when you
    spend a lot of time typing in frame
    numbers to control graphic symbols and nested animations.
    I have included the items from your list that are not already
    on mine and will do what i can to see
    that the next version of flash solves some of these issues.
    And yes - not having the ability to export movie clips and
    effects to video format is the biggest
    bummer for flash 8 - i knew it during the BETA and know it
    all too well now. But I haven't regarded
    it as a total loss - i choose to find work-arounds and
    thankfully www.flashants.com has a tool
    called SWF2Video - it has saved me on many flash to video
    projects that included graphics that had
    to have bitmap filtered effects.
    anyway - i appreciate your reply and if you have anymore
    gripes - send em my way please.
    -chris
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    Walter Elias wrote:
    >
    quote:
    Originally posted by:
    Newsgroup User
    >
    > What is it about Flash 8 that is not working for you?
    You haven't mentioned it
    > yet I don't think.
    >
    > ******************************************
    >
    >
    > 1)
    > I use Flash heavily to produce television animation. I
    use a TV-safe color
    > pallette which has several hundred colors. Now try this:
    add some colors to
    > your Flash color pallette. Bring it to more than 100
    colors. Then try selecting
    > a new color in the Color Mixer or clicking the color
    swatch on the Tools panel.
    > Guess what? The swatches go off the screen. There is no
    way to access any
    > swatches other than the lower 60 or so. You can't resize
    or drag that pallette
    > window. This was untrue in earlier versions of Flash. I
    can't tell you how
    > badly this slows down work for me and all my fellow
    animators. The
    > ex-macromedia tech people told me they flagged this as a
    "critical" issue.
    > Seems to me it would be simple to revert to the earlier
    methods of handling the
    > swatch windows and release a patch.
    >
    > 2) Apply timeline ActionScript to an object. Then on a
    later frame put a mask
    > on the timeline and apply it to that object. The
    ActionScript controlling the
    > object stops working. Same in reverse: if there's a mask
    that is removed, the
    > timeline AS stops working. Workaround: repeat the Action
    Script at every frame
    > where a mask starts and stops. This was also a bug in
    Flash 7. Macromedia tech
    > support worked with me for several weeks on this, and
    finally rated this to be
    > a "critical bug".
    >
    > 3) Put any movie clip on the timeline. Do not give it an
    instance name. Add a
    > keyframe later in the movie. On that later keyframe,
    give the movie clip an
    > instance name. Then put some ActionScript on the
    timeline that refers to that
    > movie clip's instance name. It won't work. You have to
    go back and apply the
    > same instance name to every instance of that movie clip
    anywhere on the
    > timeline, even before the AS appears. Otherwise it won't
    work. Can you imagine
    > the agony of having produced a complex animation with
    hundreds of keyframes,
    > only to later decide to apply a script to several movie
    clips. You have to go
    > back and apply instance names to every one of the
    hundreds of previous
    > instances of those movie clips, or the script won't
    work.
    >
    > Is that enough? Shall I continue with all the irritating
    little user interface
    > bugs? Such as the Controller window, which you used to
    be able to tuck away
    > beneath the Tools pallette, without sacrificing screen
    real estate. But now it
    > can only appear above the timeline, which means you have
    to sacrifice a bit on
    > the size of the stage. When doing animation, every pixel
    of viewable area is
    > important!
    >
    > I could go on and on. Most of the bugs I found are
    simple to fix, since most
    > of them were not bugs in Flash 7!
    >
    > To be very honest, even though I'm a designer and
    animator, I find the
    > 'graphic enhancements' in Flash 8, like the filters, to
    be mostly useless. If
    > my clients didn't require that I use Flash 8 so that I
    can send files back and
    > forth with them, I'd do like a huge number of animators
    I know and go back to
    > Flash MX (version 6), the last stable, elegant and truly
    user-friendly version
    > of Flash.
    >

  • 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....!

  • Modifying the behaviour of spry tooltip - "pinning to the screen"

    Hi there,
    I have some spry tooltips containing content with links. These tootips are not really that large, but the links change the content of the tooltip. Often, since these tooltips contain links that may be near to the bottom of the visible tooltip content, if the linked-to content is smaller than the previous tooltip, the mouseout event will fire and the tootip will close.
    The triggers for the tooltips can be quite dense in frequency, and I want to keep the delay to a minimum to help swift movement over these dense areas. The problem is that the change in size of the tooltips can catch the browser unaware, and when the tooltip closes it can be quite annoying, (as  the browsing within the tooltip would have to be repeated from the first trigger to access the links in the tooltip.) Changing the hide delay option doesn't really work for me.. I want the showdelay to be quite small, so the hidedelay has to be small also.
    I want to place a checkbox in the tooltip to "pin" it open. I am completely stumped on how to do this. I can quite happily place and replace the checkbox, write event handlers etc.. but the complexity of the spry tooltip code seems indecipherable for me to modify it to my needs.
    I need a 'hack' that will disable the appear/disappear behaviour of the tooltip (as well as the triggers), so that leaving the tooltip or manoevering the mouse outside, and over any other triggers will not change the tooltip displayed, whilst keeping the internal content displayed with its links still working.
    Then, after the checkbox is cleared, normal behaviour to resume.
    If there is a simple fix,.. like duplicating the content into another div styled similarly and replacing the tooltip on screen altogether, at the same position - that'd be great... but how do I do this seamlessly and deactivate/reactivate the tooltip efficiently? I would need to access the position of the tooltip for this, So I still have trouble!
    Please, any help would be greatly appreciated!!
    Many thanks,
    Alex

    Hi Narayan,<br /><br />Thanks for pointing me in the right direction.<br />Using the following code snippet, I was able to figure out the ActionIDs that I needed to filter:<br />>// You can run this code from a codesnippet in the debug build and watch the trace output (with the Test >> Trace >> Obsolete >> Obsolete:Actions category enabled)<br /><br />>MessageToConsole ("Dumping ActionID Info begin...\n");<br /><br />>InterfacePtr<IApplication> theApp(gSession->QueryApplication());<br /><br />>InterfacePtr<IActionManager> actionManager(theApp->QueryActionManager());<br /><br />>actionManager->DumpActionInfo(IActionManager::allActionInfo);<br /><br />Namely, I need to filter kEditOriginalActionID/kLinksPanelMenuComponentBoss and kEditOriginalSelectionActionID/kLinksPanelMenuComponentBoss<br />Everything seems straighforward for the kEditOriginalSelectionActionID ActionID. I just perform my action on the links currently selected in the current document.<br />For the kEditOriginalActionID though, it is necessary for me to know which links are selected in the Links Panel.<br /><br />Any idea how I might do this?<br /><br />Thanks again,<br /><br />- Jackeen

  • CF inside a Spry ToolTip

    I've not tried it yet but am curious if anybody has any experience with it or if it's even possible. I know any valid HTML will work inside those but I'm wondering if a simple CF email contact form inside a Spry Tooltip will function as intended. What problems might I run into and is this simply a bad idea on its face?

    <script type="text/javascript">
    <!--
    var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1",
    "#sprytrigger1", {useEffect:"fade", offsetY:-20});
    //-->
    </script>
    </div>
    <br style="clear:both" />
    </div><br />
    <div class="sizeHeader">SEE ALSO:</div>
    <p> </p>
    <p> </p>
    <p> </p>
    </div>
    <!-- end #container -->
    </div>
    <div class="tooltipContent" id="sprytooltip1"> <span
    class="head1"><em><img src="images/hands.jpg"
    width="202" height="88" alt="Memory Foam Upgrade" /><br />
    </em></span><span
    class="14BIwhite"><em>Memory Foam
    Upgrade</em></span><span
    class="head1"><em><br />
    </em></span><span class="body">Add memory
    foam to the inside of <br />
    your bed for a luxurious night's
    sleep.</span></div>
    <script type="text/javascript">
    <!--
    var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1",
    "#sprytrigger1", {useEffect:"fade", offsetY:-20});
    //-->
    </script>
    as you see there, you have a double constructor.
    the first one, will search for your sprytooltip1 element but
    will not find it as the page isnt fully loaded yet.
    So atleast remove that one.

  • Spry tooltips on hotspots. Help

    Hi!
    I saw this question on a few places here, but it didn't answer my problem.
    So, i never really used this part of DreamweaverCS4, cause my job is designing. But i need it now. Basically i have a map, and on a few towns i need to put on some more information. So at first i created the hotspot, then the tooltip, and here the problem was that the tooltip worked on the whole map, and not the hotspot...
    So, i started messing around with it, and i thought i figured out that a tooltip need a trigger thing, so i wrote in the spry tooltip properties for the trigger: #town1 , and on the hotspot for the target: town1 . and when i wanted to try it out, i got this alert: Spry.Widget.Tooltip ERR: The element "#town1" does not exist in the page.
    Can someone help me out? Basically just a little walkthrough on how it's done.
    Thanks in forward!
    TnG

    Nah, sorry it's not working. BUT THANKS!
    This is what I tried:
    <img src="terkep.jpg" width="976" height="1372" border="0" usemap="#Map" />
    <map name="Map" id="Map">
      <area shape="rect" coords="198,279,282,337" href="#" alt="ns" />
      <script type="text/javascript">
    var tt1 = new Spry.Widget.Tooltip("apDiv1", "#myDiv", {hideDelay:500, showDelay:200, hoverClass:"toolTipHover", useEffect:"blind", followMouse:true, offsetX:"30px", offsetY:20});
    </script>
    </map>
    But nothing seems to show up.
    Also this is what i tried before (not the coding way), just using dreamweaver, but here the problem is, that spry shows up everywhere (on the whole picture):
    <img src="terkep.jpg" width="976" height="1372" border="0" usemap="#Map" id="sprytrigger1" />
    <div class="tooltipContent" id="sprytooltip1">Tooltip content goes here.</div>
    <map name="Map" id="Map">
      <area shape="rect" coords="204,287,276,329" href="#" alt="ns" />
    </map>
    <script type="text/javascript">
    <!--
    var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1", "#sprytrigger1");
    //-->
    </script>

  • Dynamic Spry Tooltips

    I have a glossary XML document that I use Data Sets in our website.
    I want to be able to dynamically traverse the XML DOM to be able to pull the innerXML to insert into Spry Tooltip dynamically.
    The approach I am taking is to dynamically load a hidden Iframe with the XML Document, then parse the XML to filter out the content I need for each temr that has definition associated with it. However, I can not seem to get past this point to load into the tooltip div container.
    Any suggestions?

    In case you missed it
                            Announcement:
                            New to Spry, or  the Spry forums?
    Before you post a topic please verify that:
    You are using the latest Spry files
    The
    latest version of the Adobe Spry Framework is 1.6.1, this is the same
    version that ships with Dreamweaver CS4. If you use Dreamweaver CS3
    (uses Spry 1.4), its wise to upgrade your files to the latest version.
    This can easily be done using the Spry Updater that can be found here.
    Your question was not asked before
    Using
    the search functionality on forums you can easily find out if your
    question has been answered before. While you are in search, you can
    specify the search locations. The Spry forum can be found under:
    Adobe Labs > Spry Framework for Ajax
    Yoru question can not be found in the existing documentation
    Spry
    provides you with allot of documentation this can found on different
    locations. In the sidebar of this forum you can find a small summary of
    resources that will help you on your way.
    If
    these options do not apply to your question, please be so kind to also
    supply the following information in your topic together with a clear
    description of your issue:
    What browsers does this issue occure:
    example: Internet Explorer 8 on Window 7 and Firefox 3.0 on Mac OSX
    What version of Spry are using:
    example: Spry 1.6.1 ( the version number can be found in license header of the .css and .js files )
    What is the url of your website or page in issue:
    example: http://www.example.com/page/in/issue.html
    Step to reproduce the issue:
    example:
    Scroll down till you find the header "help", there you will see a Spry
    Accordion. When you click on it it will not open or close.
    So users can provide you with a better answer, without having to ask you for further details.
                            by Arnout Kazemier
                            at Oct 23, 2009 2:47 PM

Maybe you are looking for

  • How can I sync calendars between my mac, iphone and android phone

    I use an iPhone as my primary phone, but do travel alot and need to have a secondary phone with a local SIM card when I travel. For this reason, I am considering buying an android phone. One of my major concerns though, is how would I be able to (if

  • Upload item long text in RFBIBL00

    Hi All, is it posible to upload item long text(item text) in accounting document using RFBIBL00 program? If not there is any tool except creating new program? Hengky

  • Telco nightly "REX" tests hang BRI ports on 3700

    Several nights out of the week telco does a "REX" [?] test. When they do this, it hangs the BRI channels and they go in to a Deactivated state. I have to reboot the router to get them out of that state, bouncing the BRI interface doesn't fix it. Telc

  • Error Export DB

    I have a problem during EXPORT of the DB: I have a SUN SOLARIS 8 with ORACLE 9.2.0.1 with 6 Instance and only one give this problem to me... as I can resolve? exp system/manager full=y file=pippo.dmp log=pluto.txt EXP-00056: ORACLE error 1116 encount

  • How to create Bar chart  from existing XML file

    Hi all, i'm new to flex, i need your help to develop a flex for dashboard app. we have sample.xml file. by using this i need to create a bar diagram or piechart. Please help me out The XMl looks like this..... <?xml version="1.0" encoding="utf-8"?> <