How do I set the color of the text in the header of the TitleWindow
? I've changed the color of the header itself by using 'header-colors', but I haven't figured out how to change the color of the text in the header.
edit: some code:
My css file:
.popupWindow
{
border-color: #000000;
border-alpha: 1;
header-colors: #000000, #000000; /* This colors the header black, but the text in the header should be white */
}
My TitleWindow:
<mx:TitleWindow
xmlns:mx="http://www.adobe.com/2006/mxml"
styleName="popupWindow"
title="This text should be white!"
>
<!-- Some stuff to fill the TitleWindow -->
</mx:TitleWindow>