Hello ,
I am asking about how to create a cickable Area in a Tkinter windows , or if i can make a label Clickable ? this is how the labels are defined :
for z in rows:
distligne = 15 + distligne
a = (z[0].strip(),z[1].strip(),z[2].strip())
print z[0]
print a
list.append(a)
label = Label(interf0, text="%s %s %s"%(z[2], z[0],z[1]), justify=LEFT, bg = "blue", fg = "black" ).place(x=40 , y=120+ distligne)