View Single Post
  #5 (permalink)  
Old 07-09-2008, 02:33 PM
doug777
 
Posts: n/a
Diggs:
Default Re: tabNavigator selectedIndex not working

Try using the callLater method.

Instead of tabNav.selectedIndex = 0;

tabNav.callLater(setTab);

then

private function setTab():void{
tabNav.selectedIndex = 0;
}

Doug
Reply With Quote