5/26/2011 7:08:42 AM
Title:
Flex set Focus
how to set the cursor in the TextInput automatically when the application is started without clicking in the screen or text Input box(like when google page is loaded then the cursor is come automatically into the search box) ?
5/26/2011 11:08:43 AM
use "Selection.setFocus(myTextBox); " on applicationComplete handler if using flex or use this in first frame in case using falsh CS
6/1/2011 12:06:48 AM
if(focusManager)
{
focusManager.setFocus();
}
and make sure that focusManger is not null