I am having difficulty changing the font family for the InfoWindow label in the header. Is this possible? I am using a copy of the InfoWindowSkin and have changed the fontfamily for the content but the fontfamily does not appear to do anything to the InfoWindowLabel. Below is the code I have in the InfoWindowSkin (the font style is identified in the Style area and works correctly for the content). <s:HGroup id="headerGroup"
width="100%"
includeInLayout.withoutHeader="false"
minWidth="0"
verticalAlign="middle"
visible.withoutHeader="false">
<esri:InfoWindowLabel id="labelText"
fontFamily="myriadFont"
fontSize="30"
color="#FFFFFF"/>
<s:Rect width="100%" height="30"
minWidth="0"/>
<esri:InfoWindowCloseButton id="closeButton"/>
</s:HGroup>
<s:Group id="contentGroup"
width="100%" height="100%"
fontSize="20"
fontFamily="myriadBoldFont"
minHeight="0"
minWidth="0"
color="#000000"
contentBackgroundColor="#B0B0B0">
</s:Group>