There are a series of skins embedded in my app that I created using
the Flex Design Exension for Illustrator. The skins have worked
wonderfully until this last week when I upgraded from Flex 3 beta 2 to
beta 3. After upgrading one of my skins went blank. The
headerBackgroundSkin property for my DataGrid now shows a white
background rather than the skin.
I'm not sure if it is a problem with the code, as I didn't change
anything. With that said, here is what I have in my css:
DataGrid {
backgroundAlpha: 0.6;
backgroundColor: #f1f5fa;
alternatingItemColors: #ffffff, #f1f5fa;
horizontalGridLines: false;
verticalGridLineColor: #ffffff;
selectionColor: #6d894a;
rollOverColor: #E47025;
color: #0b333c;
textSelectedColor: #3e4736;
dropShadowEnabled: true;
shadowDirection: right;
headerBackgroundSkin: Embed(source="dataGridSkins.swf",
symbol="DataGrid_headerBackgroundSkin");
headerStyleName: "mydataGridHeaderStyle";
}
.mydataGridHeaderStyle {
color: #3e4736;
fontSize: 12;
fontWeight:bold;
}
Any ideas why it would break between versions of the beta?
Thanks,
Scott