Flex: Different width for different tabs in tab navigator
Is there some开发者_如何转开发 way to have a tab navigator in flex where each tab width can be controlled explicitly ?
Thanks in advance.
Yes that can be done. The following example grabs the tab at index 0:
yourTabNavigator.getTabAt(0).width = 200;
精彩评论