Hi, > For the most part, SimpleCSSStyles contains styles we have at least > attempted to support in the SWF side. So if you want to add fancier > background styles it would be nice to add a background bead that supports > it.
I looked into that the issue I think is that SimpleCSSStylesValueImpl has several static objects such as inheritingStyles, perInstanceStyles, colorStyles etc etc and you would need to modify from the bead. Can you do that? Alternatively you could make you own SlightlyMoreComplexValueImpl extending from SimpleCSSStylesValueImpl and modify those styles in it’s constructor. However then I think you run into an issue with this. Say I add ExtraBorderStyleBead and ExtraBackgroundStyleBead I can’t see how I can include both BorderCSSStylesValueImpl and BackroundCSSStylesValueImpl. Is the alternative really only to just make your own AllTheThingsCSSStylesValueImpl rather than being able to break it up into reusable parts that deal with borders, background, text formatting etc ect? Thanks, Justin