Do not use FocusEvent to dynamically set a selection on a TextField, use MouseEvent instead.
So not:
- myTextField.addEventListener(FocusEvent.Focus_IN, handler);
But:
- myTextField.addEventListener(MouseEvent.CLICK, handler);
Do not use FocusEvent to dynamically set a selection on a TextField, use MouseEvent instead.
So not:
But: