Again, a theming question. Because the project I'm working on requires older libraries that extend mx components (such as TitleWindow and TabNavigator), I can't use what I know about Spark skinning directly. However, since the project is being programmed using the default Spark theme (with my modifications on top) rather than the Halo theme, I apparently don't have access to the styles I need (namely backgroundImage and contentBackgroundImage which apparently require Halo to be active). Simply setting Halo to be the theme will break other things, not the least of which my own theme. Plans are in the works to replace the older libraries or at least patch them better to Flex 4, but as of right now, I need a way to style/skin these components without modifying them directly.
It would be ridiculous to be unable to add a background image to a TitleWindow's content area! I've searched the internet high and low all day and tried countless variations of styles, skins, selectors, and combinations thereof with no luck. Doesn't anyone know how to add a background image to the content of a mx TitleWindow while using the Flex 4.1 sdk?!
Actually, it's not the only way, it's -as you've mentioned- the hardcoded way: sorry about that. You can also skin your TitleWindow component to accept background images.
To create the appropriate skin with all the necessary states, you can copy the base skin:
spark.skins.spark.TitleWindowSkin
asMyTitleWindowSkin
, and add some customization to it:In the MetaData tag you should enter the name of your custom TitleWindow class:
To accept backgroundImage,
updateDisplayList(unscaledWidth, unscaledHeight)
method, and inside of it initialize this member:backgroundImage = getStyle("backgroundImage");
in the
<!-- layer 2: background fill -->
section, after the solid-color-fill (<s:Rect id="background"...
), you should put the following snippet:Next you need to create a new class (
my.package.CustomTitleWindow
), that extends TitleWindow, set its skin, and bind the backgroundImage style:at the end a small test (which worked fine at my side, and i hope it's closer to what you're looking for):
Update
For setting the skin and the background image from a css file, you only need some minor modifications:
Create a CSS file with content:
The test would look like:
and you need to remove the skin declaration from the CustomTitleWindow class:
skinClass="your.package.MyTitleWindowSkin"
.Of course you don't need to apply the skin to the my|CustomTitleWindow class, you could use it just for a css class, this way you surely don't need to modify your existing component.
Update -- without custom component
Forget the CustomTitleWindow class.
skinnedtw.css
TestApp.mxml
My output still looks like this: