Styling ButtonBar font in Flex mobile app - with screenshot attached

后端 未结 1 627
小蘑菇
小蘑菇 2021-01-20 07:27

I\'m trying to add a ButtonBar at the bottom of a mobile Flex app by using this code:

CSS:

@namespace s \"library://ns.adobe.com/fle         


        
相关标签:
1条回答
  • 2021-01-20 08:06

    Alright, I've found that setting textShadowAlpha helps:

    s|ActionBar, s|ButtonBar {
        chromeColor: #0066CC;
        color: #FFFFFF;
        titleAlign: center;
        textShadowAlpha: 0;
    }
    

    And there is also textShadowColor available and used by mobile/ActionBarSkin.as, mobile/ButtonSkin.as and mobile/supportClasses/ButtonSkinBase.as

    0 讨论(0)
提交回复
热议问题