Changing tab border color at run time in flex
问题 How can I change border color of tab in tab navigator control at runtime? I am trying to access it with its id "mytab" and update it's style. this.mytab.setStyle("bordercolor","red"); A TabNavigator has multiple tabs and I have to change style of few tabs based on some logic. StyleDeclaration is applicable for all the tabs under tab navigoter but how can use CSSStyleDeclaration based on componentid? The only shortfall with this approach is that Style can not be changed for individual tab. 回答1