Thread
:
tabNavigator selectedIndex not working
View Single Post
#
5
(
permalink
)
07-09-2008, 02:33 PM
doug777
Posts: n/a
Diggs:
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
doug777