I need to add a popup dialog box on my GUI. So, when ever I hover my mouse over a label, it should be able to show a popup( Like the type we get while hovering over a file in windows). It should also disappear as soon i move away the mouse.

To start with, I am not even sure which module or class to use. I tried menu, but the results are not what i expected. I also tried to learn tkCommonDialog, but couldn't understand it properly. Please Advice!

link|improve this question

68% accept rate
feedback

3 Answers

up vote 3 down vote accepted

The little popup window is called a tooltip.

link|improve this answer
feedback

This post may be relevant: http://bytes.com/topic/python/answers/505848-tkinter-button-overrelief

link|improve this answer
the link you gave only changes the text of widget. Though even control is similar to what i need. Here What i need is to show a popup(containing info abt the widget). The popup should appear and disapper the same way as given in the link. Thanks – Ani Nov 17 '11 at 8:01
feedback

Take a look at the Balloon widget in the Tix package. I think it is just what you are looking for.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.