views:

146

answers:

1

Hi friends, Is there some way to have a tab navigator in flex where each tab width can be controlled explicitly ?

Thanks in advance.

+1  A: 

Yes that can be done. The following example grabs the tab at index 0:

yourTabNavigator.getTabAt(0).width = 200;
MysticEarth
Thanks Mystic :)
Ashine