I would like to improve my program, I just do not know how.
I want that an event starts, when the users mouse is over a tkinter's widget.
This...
button.bind("<Motion>", lambda eff: callback())
... is working, but the users needs to move the mouse for call the function.
Is there a way to start, for example, every x seconds the function while the mouse is over the widget?
I need it to display an integer that changes constantly as text of a button or a label while the mouse is over the button or label.
Do you have any Ideas?
Thanks for your attention,
Lukas