xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:s="library://ns.adobe.com/flex/spark"
creationComplete="init()">
import mx.events.StyleEvent;
public function init():void {
styleManager.loadStyleDeclarations("../assets/ButtonStyles.swf", false);
var myEvent:IEventDispatcher = styleManager.loadStyleDeclarations("../assets/LabelStyles.swf", false);
myEvent.addEventListener(StyleEvent.COMPLETE, doUpdate);
}
public function doUpdate(event:StyleEvent):void {
styleManager.loadStyleDeclarations("../assets/ACBStyles.swf", true);
}