From: russty1971 on
The lead programmer at the company where I work would like to have a -
help flag for widgets that would allow the programmer to enter a help
text that would pop up when the mouse hovers over the widget. Is
there anyone else out there that would find this useful?
From: Jeff Godfrey on
On 5/10/2010 10:15 AM, russty1971 wrote:
> The lead programmer at the company where I work would like to have a -
> help flag for widgets that would allow the programmer to enter a help
> text that would pop up when the mouse hovers over the widget. Is
> there anyone else out there that would find this useful?

So, are you just after a tooltip implementation? If so, there are a
number of them around. I use the one provided with tklib. Here's a
quick example:

package require tooltip
button .b1 -text "Button 1"
pack .b1
tooltip::tooltip .b1 "Help for button 1"

--> Shows "Help for button 1" when the mouse hovers over the button...

Jeff
From: cattaghia on
By the way, just for curiosity, why are tooltips not definitely
incorporated in Tk widgets up to date?

Fabricio Rocha
Brasilia, Brasil