Input Box Events
Text Box Events Dev-Only
Text Box events are ideal for forms, search bars, login fields, and anything else the user types into.
On Value Change
Fires whenever the text changes. Good for live validation, search-as-you-type behaviour, or updating variables in real time.
On Enter Pressed
Fires when the user presses Enter while focused on the field. A common use is submitting login, search, or chat-style input.
On Focus
Fires when the text box becomes active. Useful for showing hints, highlighting the field, or revealing helper UI.
On Blur
Fires when the text box loses focus. This is handy for validation, hiding helper text, or checking whether the user left the field empty.