So, I'm trying to adjust the focus to a specific button when the application starts (or later based on certain events), so that the user can simply press the back button to press the button. However, none of the following approaches work.
protected function group1_creationCompleteHandler(event:FlexEvent):void
{
//btnBrowse.setFocus();
focusManager.setFocus(btnBrowse);
}
Murgh source
share