you can only do it by placing a tranparent button above the Label and run a script to read, Change (by using a Dialog) and
write back the entered text to the Label
text = GetUserLabel(25)
Begin Dialog EnterText 420,120,160,96,"Enter Text"
OKButton 30,68,40,14
CancelButton 90,68,40,14
TextBox 8, 26, 146, 18, .FText
End Dialog
Dim Dlg1 As EnterText
Dlg1.FText = text
Button = Dialog (Dlg1)
If Button = 0 Then Exit Sub
SetUserLabel(25, text)
something like this, not tested, should work.