tooltips

Re-Centering JQuery Tooltips when resizing the window

I have written a function that positions a tooltip just above a textbox. The function takes two arguments: textBoxId - The ID of the textbox above which the tooltip will appear. Example: "#textBoxA" toolTipId - The ID of the tooltip which will appear above the textbox. Example: "#toolTipA" function positionTooltip(tex...

Nested tooltip (tooltip within tooltip)

I have a page which is having some link and when i click on that link it open a tool tip form that also contains some link and now i want to open another form within already opened tool tip. Is there any possible way? Please help. ...

Is there a setting in Visual Studio 2008 to show keyboard shortcuts in button tooltips?

Visual Studio 6.0 used to show the keyboard shortcuts in the tooltips for the toolbar buttons. Is there a setting in Visual Studio 2008 that turns that on, or is that yet another case of Microsoft deciding to remove a feature that some find useful from one of their products? ...

How to increase content assist tooltip size in Eclipse / PDT

I'm using PDT with Eclipse and the Content Assist tooltips (e.g. for class method descriptions) are too small to be useful. Usually, only the first few words are visible. Is there a preference to increase the sizes of these? I have plenty of screen real estate, so I want to make them much larger. Thanks Edit: Maybe I'm using the wro...

jQuery lightweight tooltip script recommendation

I am looking for a lightweight jQuery script for tooltips that is lightweight and can be easily used with image maps... Ideally it would automatically take the 'title' of each the area tag to function as a tooltip. The reason this is an issue is I have hundreds of areas (its a world map) and a line of code for each tooltip will soon add ...

Windows Tooltips are not getting displayed.

Hi, I have a code which sets the tooltip for a Winforms Controls in the standard way like this :- Tooltip tooltip = new tooltip(); toolTip.SetToolTip(control, text); In the same application, there is a Window which is rendering a movie of some Images at 5 Frame per second using Direct3D SDK. Now, when the Movie is being render...

hover to trigger tooltip and menu animation

How do I combine actions on events. So a hover will animate the menu and display the tooltip attached to that menu item. I am currenlty using the lavalamp and beautytips plugins. ...

Are multiline tooltips possible using CWnd::EnableTooltips()?

I'm attempting to make my tooltips multiline, but I don't seem to be having much luck with it. I call CWnd::EnableTooltips() directly after creation (in this case, an edit box) and I handle the TTN_NEEDTEXT message. My tooltips display correctly, but only display as a single line. I've tried adding '\n' to the string I pass when han...

ChartFx tooltips are being clipped at end of chart

Hello, I have a relatively complex multi-line chart created in ChartFx (WinForms). Separate tooltips are displayed when the cursor hovers over any point on the line, when hovering over a shaded "section" of the graph, and when hovering on the x-axis to show the corresponding point on the chart. Two of these tooltips look great, one is...

Extending a combobox whith extended tooltips

I have a customer combobox that allows the programmer to set tooltips for the dropdown items at run time. It works great as long as the listing is from the dropdown (i.e. I press the down arrow.) However, I would like it to work for the "SuggestAppend" list as well, but it isn't. I 'borrowed' the code from an online source (can't remem...

Tooltip that's not linked to any particular control.

I'm trying to make something like a spellchecker, that will list possible words under the current caret position. I thought I would do this by creating a tooltip, moving it according to the caret's location, and changing the text inside the tooltip. I'm having problems. I'm trying to show the tooltip with tip.Show(form, x, y); However...

Tooltips with infinite timeout?

I'm thinking of setting the timeout on all my tooltips in a WinForms application to infinity (or an extremely large value). The motivation is that it's annoying for the user if the tooltip disappears while I'm still reading it, without providing any extra value whatsoever as far as I can tell. Normally I wouldn't ask something like this...

jQuery UI Datepicker with jQuery tipsy

Any ideas how to implement tipsy tooltips over jQuery's UI Datepicker? Basically I want to get a tooltip when the user moves on a specific date in the Datepicker. The Datepicker will be displayed inline and always visible. Thanks! ...

Can't display Tool Tips in VC++6.0

I'm missing something fundamental, and probably both simple and obvious. My issue: I have a view (CPlaybackView, derived from CView). The view displays a bunch of objects derived from CRectTracker (CMpRectTracker). These objects each contain a floating point member. I want to display that floating point member when the ...

SIFR: Surface tooltips off words inside SIFR'd text

If I SIFR-ize the following text: "We make <span>blankets </span> and pillows for giraffes." I know that I can make the SPAN part a different color, and I can even assign it a :hover color change in CSS. But can I target that SPAN for a Javascript tooltip as I would if the text wasn't SIFR'd? ...

WPF change a tooltip background in c# code

I know how to change the tooltip in the xaml side of things, but does anybody know a great solution to do this in C#? ...

Tooltips problem, making this javascript work with my smarty foreach loop, help pelase!

I am using an example of tooltips from http://www.dynamicdrive.com/dynamicindex5/stickytooltip.htm on www.euroworker.no/order I have this code here to work with, but it just doesn't seem to work correctly, I've tried everything I can think of (not a lot of things) Here's the code. {foreach from=$cart.cartItems item="item" name="c...

Unicode tooltips not showing up.

Hi, I am trying to display unicode tooltips in my application window, however they do not seem to display. Non-unicode text shows up correctly but as soon as I try doing unicode no tooltip shows up. The following is what I am currently doing, any help is appreciated thank you. HWND parentHwnd = pickInfo->getViewer().getCachedHwnd...

jQuery: .toggle() doesnt work properly on two different elements.

Hello there, This is my markup: <table class="col1table" cellspacing="0" cellpadding="0"> <tr> <td><a class="tips_trigger" href="#"><img src="/img/design/icon_tips_venn.png" /></a></td> <td><a class="facebook_trigger" href="#"><img src="/img/design/icon_facebook.png" /></a></td> <td><a class="twitter_trigger" href=...

JQuery Tool tips

I want to create a tool tip for an image with a link now I had it working one but it doesn't work with the 2nd image. Here is my Sample Code: <!-- trigger element. a regular workable link --> <a id="test" title="Name - Title">Name</a> <!-- tooltip element --> <div class="tooltip"> <div><span class="name">Name</span><br /> Title <...