I have an application in which the images(created using Label(root,image='my_image)) change whenever some event occurs. Buttons are not used. One of my image has a label having text above an image. So it occurs where i want it. But when i move to next image after that, it is still there and i don't want it. What can i do? I have tried to destroy() the text label but it says that the variable is used before assignment. Here is the part where i insert a text label. The panel2 variable doesn't work outside if block so i am not able to destroy it:
if common.dynamic_data:
to_be_displayed = common.dynamic_data
panel2 = tk.Label(root, text = to_be_displayed, font=("Arial 70 bold"), fg="white", bg="#9A70D4")
panel2.place(x=520,y=220)
You can do it on the canvas. Place label on the canvas and use
bind
functions forEnter
andLeave
events:You can change what configuration any objects have when you hovering canvas or anything else in created functions. Play with objects and code to do whatever you want to.
Also as it was mentioned you can store your labels or other objets in the list or dictionary to change separate objects, for exaple:
EDIT 1
If you want to remove label when the mouse left the canvas you can write such a functions:
or just add 2 rows in the previous to combine them.