Hello ,
I am asking about houw to get a hand form of the mouse when it is over a "Label" , this Label is Clickable and defined like this :
def callback(event):
print "clicked at", event.x, event.y
Interface1()
lab1dep = Label(interf1, text="Departement Informatique" ,bg = "blue" ,font=("times",12, "bold"), fg = "white" )
lab1dep.place ( x=40 , y=220)
lab1dep.bind("<Button-1>", callback)
lab1dep.bind("<Button-1>", callback)`