This works for me...
ApplicationControlBar
{
backgroundColor: #003867;
color: #ffffff;
}
along with...
ApplicationControlBar
{
fillAlphas: 1, 1;
fillColors: #003867, #003867;
color: #ffffff;
}
along with...
<mx:ApplicationControlBar height="150" dock="true" fillAlphas="[1, 1]"
fillColors="[0x003867, 0x003867]" color="0xFFFFFF">
--- In [email protected], "Stefaan_Nachtergaele" <stef...@...>
wrote:
>
> desired: a solid dark blue background with white color text.
>
> How I'm trying it:
> ApplicationControlBar {
> fillAlphas: 1.0,1.0;
> fillColors: #003867, #003867;
> color: white;
> }
>
> What I'm getting:
> Dark blue to white gradient near the top.
>
> Anyone know how to do this?
> Thanks.
>