From: russty1971 on 10 May 2010 11:15 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 10 May 2010 11:32 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 10 May 2010 23:37 By the way, just for curiosity, why are tooltips not definitely incorporated in Tk widgets up to date? Fabricio Rocha Brasilia, Brasil
|
Pages: 1 Prev: EuroTcl 2010: Reminder Next: Maximum (practical) number of threads? |