Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a tabNavigator with a programatic skin for the tabstyleName, I want it to have a gradient background and that this background shifts as well as the color of the text depending on whether its selected or not. My problem is that if I add childs to the tabNavigator dynamically the last added tab, which will be selected, does not get the right font color. The font color is the one from the normal tab instead of the selected. However the background is correct. In my case the font color should get white but it comes black.

Here is my css:

.tab
{
    up-skin: ClassReference("css.orangeCss.programaticSkin.TabSkin");
    down-skin: ClassReference("css.orangeCss.programaticSkin.TabSkin");
    over-skin: ClassReference("css.orangeCss.programaticSkin.TabSkinOver");

    selected-up-skin: ClassReference("css.orangeCss.programaticSkin.SelectedTabSkin");
    selected-down-skin: ClassReference("css.orangeCss.programaticSkin.SelectedTabSkin");
    selected-over-skin: ClassReference("css.orangeCss.programaticSkin.SelectedTabSkinOver");

    fillAlphas: 1.0, 1.0;
    fillColors: #FFFFFF, #FFFFFF;
    font-weight: normal;
    corner-radius: 0;
    border-style: solid;
    border-thickness: 1;
    border-color: #504f4f;
}

.selectedTab
{
    fillAlphas: 1.0, 1.0;
    fillColors: #797878, #504f4f;   
    font-weight: bold;
    corner-radius: 0;
    border-style: solid;
    border-thickness: 1;
    border-color: #504f4f;
    color:#FFFFFF;
} 

TabNavigator
{
    backgroundColor: #FFFFFF;
    selected-tab-text-style-name:selectedTabTextStyle;
    text-roll-over-color: #f6a914;
    color: #000000;
    border-color: #504f4f;
}

.selectedTabTextStyle
{
    color:#FFFFFF;  
}

and here is the updateDisplayList function for the selected tab programmatic skin:

override protected function updateDisplayList(w : Number, h : Number) : void
{
    this.styleName = "selectedTab";

    // retrieves the user-defined styles
    var fillColors : Array = getStyle ("fillColors");
    var fillAlphas : Array = getStyle ("fillAlphas");
    var cornerRadius : Number = getStyle ("cornerRadius");

    // converts the fill colors to RGB color values
    StyleManager.getColorNames (fillColors);

    // ready to draw!
    graphics.clear ();

    // draws the gradient
    drawRoundRect (0, 0, w, h, cornerRadius, fillColors,
    fillAlphas, verticalGradientMatrix (0, 0, w, h));

    super.updateDisplayList (w, h);
}

Hope somebody understands my problem and can help me out or give me a tip. Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.