hi.
Let's say I have 10 Labels and each has a different text name.
I want to see which Label is onClicked with the mouse, that label name will be show to me.
......
......
entry=ui.Entry(win,"",50,150)
local label={}
label[1]=ui.Label(win,"A",50,50)
label[2]=ui.Label(win,"B",60,50)
label[3]=ui.Label(win,"C",70,50)
........
........
function labelxxxx:onClick()
entry.text = label[xxxx].text
end