Thread: EditBox control
View Single Post
05/11/14, 12:05 PM   #7
Aicam
Join Date: Apr 2014
Posts: 16
You need to tell the edit box when it should get focus. The following should be the normal behaviour of an edit box.
Code:
<OnMouseDown>
    self:TakeFocus()
</OnMouseDown>
<OnEnter>
    self:LoseFocus()
</OnEnter>
<OnEscape>
    self:LoseFocus()
</OnEscape>
I don't think the text attribute works and most of the others should be the default values.
  Reply With Quote