What is an easiest way to place cursor (focus?) into a Input TextField receiving user input after an event?  Focus Manager classes have always seems very confusing to me.
Good news for you: in as3 there is no Focus Manager, just use the stage:
stage.focus = textField;
textField.setSelection(textField.text.length,textField.text.length); //place caret at end of text
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With