CSSLoader
Today I made the last completion to my CSSLoader class, the class enables you to load CSS files into your flex application during runtime, a functionality Actionscript3.0 lacks. It’s actually as easy as this: var loader:CSSLoader = new CSSLoader(); loader.load("mycssfile.css", "nameToBeGiven", displayObj1, displayObj2); ..where the amount of DisplayObjects (to which the style will be applied [...]