Tagged Questions
0
votes
1answer
33 views
Win32 tooltip appears on the top of the screen when it goes out on the bottom
I am using my own tooltip to display quick help about a currently selected item in my autocomplete listbox used in my editor. Just like VS does it for source code editor, when a new selection happens, ...
0
votes
1answer
90 views
tool tip? I need pop up text to appear under each image
What I am trying to do is have three pop up boxes that appear under each image with different text in each of them when I hover over each of the three images on the webpage but every time I hover over ...
1
vote
1answer
67 views
How to offset & prevent tooltip(s) from passing the bottom edge of a page?
I'm trying to figure out what to add to this script to prevent the tooltip from going past the edge of the bottom of my page. Any help and your time is much appreciated thanks.
...
0
votes
1answer
304 views
How to Show tooltip on multiselect box with jsp?
<div class="span3">
<label>Restaurants <span class="f_req">*</span></label> <select
id="rest_id" name="rest_id"
...
1
vote
1answer
367 views
Qt Creator - How can I set the background color of a tooltip to be different than the widget?
I am working on a GUI and I've run into a problem. If I set a button, label, or other widget to have a background color, the tooltip for that widget also takes the same background color. I tried ...
-1
votes
1answer
155 views
How to change only one tooltip?
I am populating a FlowLayout with Pictureboxes. As I populate i give each of them a tooltip. I have a seperate function to change the pictures how can I change the tooltip as well?
dim laytt as ...
0
votes
1answer
79 views
position of a tab control tooltip
I created a tab control with TCS_TOOLTIPS style, hence when mouse is over tab items, it displays a tooltip which shows some information.
The tooltip always has the same x-position as the cursor and ...
0
votes
1answer
271 views
How can i show a table in a tooltip:XSL
I have a the below tags in xml file:
<more_details>
<source>192.168.1.1</source>
<destination>10.10.10.10</destination>
...
1
vote
2answers
135 views
Change tool tip timeout on menustrip in winforms?
How to extend tool tip timeout when hovering on menu items in a menustrip (in winforms)?
I set it like this:
toolStripMenuItem1.ToolTipText = "foo";
0
votes
1answer
157 views
Tooltip Display Issue
I have added a tooltip into my code ToolTipService.ToolTip="Submit Changes" in Button control.
I also used a Radpane telerik control on my page.when i move mouse on button the tooltip is hiding behind ...
0
votes
2answers
238 views
Problems binding property on control to controls in a tooltip
My application uses WPF for the presentation layer. I have a UserControl in my code, whose XAML is shown below:
<UserControl x:Class="CarSystem.CustomControls.ReadPushPin"
...
3
votes
2answers
849 views
Make all tooltips multiline in Java (Swing)
Tooltips in my application can be quite long, therefore I'd like them to have line breaks.
I don't want to use html as I'd prefer to set a (max) width of my tooltips instead and have the line breaks ...
2
votes
1answer
354 views
Displaying black and red ToolTips as speech baloons
I'm porting a card game from pure Flash/AS3 to Flex 4.5:
I'm almost done, but the "speech baloons" marked by the blue color in the screenshot above are missing.
Those "speech baloons" fade in, ...
1
vote
1answer
462 views
JQuery - Keeping Tooltip in view
I seem to have been able to achieve this vertically but I can't seem to get the horizontal flip to work.
$("a.tooltip").mousemove(function(e) {
//$("#tooltip")
//.css("top",(e.pageY - ...
0
votes
0answers
278 views
Having Trouble with jQuery tooltips
I'm using the jQuery Tools Tooltip plugin found here. This is it's intended behavior:
Have 3 elements, in this case divs, which, when clicked, popup a tooltip. This tooltip is another div on the page ...
0
votes
4answers
233 views
Activating a tooltip that uses a common div as the tip… (jQuery)
I've looked around a bit, but can't seem to find the answer I'm looking for.
What I want to do:
I have a div that has content in it, including other elements. It is to remain hidden on the page, but ...
1
vote
2answers
2k views
Forcing a Java tooltip to appear?
Given a JTextField (or any JComponent, for that matter), how would one go about force that component's designated tooltip to appear, without any direct input event from the user? I.e. why is there no ...
3
votes
1answer
723 views
How to Shell_NotifyIcon WITHOUT adding an icon in the notification area
MSDN's documentation about Notifications and the Notification Area is pretty clear in the requirement for having an icon in the notification area in order to display a notification:
To display a ...
0
votes
1answer
308 views
Tool Tip is fixed at a position
I am displaying a ToolTip on a chart currently .
The issue is that the tooltip is postioned at one place only (Means where everever the Mouse is placed on the chart , the tool tip is shown at a ...
0
votes
2answers
53 views
Display the same title text for all elements of the same class?
Lets say I want to display tool tips for links using the title attribute:
<a class="editcommand" title="Edit" ...>
Is there a way to specify the title text for all elements of the same ...
0
votes
1answer
745 views
Tooltip Only working on one text field?
I have the below code which i got from another website. The problem i am having is it is only displaying onclick of the first text field. All other textfields it does not work.
I have not bothered ...
5
votes
1answer
8k views
Tooltip of an “img tag” inside an “a tag”
I'd like to know the difference between title attr of the tag "a" and alt attr of the tag img.
Also, wich should I use when I have an image inside an a? Just like in this case:
<a ...
0
votes
3answers
836 views
Adding a tool tip / bubble display without span tag or title
How would I go about displaying a tooltip when the user hover overs some text / keywords? This body of text is directly retrieved from the database so I am unable to add any span or div tags or title ...
0
votes
4answers
4k views
display tooltip on hover over text
How would I go about displaying a tooltip when the user hover overs some text? These text are keywords. I don't want to manually add these tooltip for each keywords. I am looking for a way to create a ...
2
votes
2answers
2k views
What is the simplest way to make tooltips in Tkinter?
For those that don't know, tooltips are those little bits of text that popup when the mouse hovers over a widget for a certain durration of time.
I'm using Windows 7 if it makes a difference.
1
vote
1answer
808 views
How to force a gtk tooltip to be shown?
I have an application and I want to show a tooltip every time a user set the focus on a entry widget. Do you know a way to force a gtk Tooltip to be shown?, because right now it only shows when the ...
4
votes
4answers
4k views
Is there a JQuery tooltip plugin that supports HTML content and automatically positions tooltips?
I am searching for a Tooltip plugin/library for JQuery. It should be able to automaticlly position tooltips, like TipTip, and also support HTML content for the tips.
TipTip does fullfill both ...
3
votes
3answers
450 views
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 ...
4
votes
5answers
4k views
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 ...
0
votes
3answers
1k views
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: ...
0
votes
4answers
393 views
Adding Screentips to a label
I know it is possible to add a tooltip to just about every element in Visual Studio, but I was wondering if anyone knew if it was possible to add screentips to a label? I have 5 images I'd like to ...
3
votes
2answers
2k views
Ideas on how to display a modeless message box as a tooltip
I need to display a modeless message box whenever a user hovers over a menu item. I can't use messagebox.show(...) because it is a modal. So what I did was create a seperate windows form and display ...
1
vote
2answers
2k views
tooltip on a dropdown list
Is there anyway of showing a tooltip on the dropdown list?
such as when the list is dropped and a person hovers over each option a tooltip or something with details appears. this is for a drop down ...
16
votes
14answers
14k views
Recommendations for jQuery tooltips
I am looking for tooltip plugins for jQuery that would allow for the following type of behavior.
<a href="somewhere.html">
<span>
<img src="someimage.jpg" style="display: none;" ...
0
votes
2answers
4k views
Text Alignment on OwnerDraw Tooltip in C# / .NET
I have a multiline text string (e.g. "Stuff\nMore Stuff\nYet More Stuff"), and I want to paint it, along with a bitmap into a tooltip. Since I am painting the bitmap, I need to set OwnerDraw to true, ...

