views:

277

answers:

1

stage.focus = textField;

textField.setSelection(0,0);

is not working for me.

A: 

Is "textField" the child of a library movieclip? If so, you have to access it through the parent.

stage.focus = someMovieStageName.textField
curro