flex 样式

用flex sdk提供的mxmlc工具将你的CSS文件打包,然后利用mx.styles.StyleManager的运行时加载CSS文件。
编辑时加载样式使你不需要重新编译即可改变样式定义。若要在运行时加载swf,你要使用styleManager的loadStyleDeclarations方法。
var dispathcher:IEventDispatcher = StyleManager.loadStyleDeclarations("文件路径",true);
dispathcher.addEventListener(StyleEvent.complete,styleCompleteHandler);


private function styleCompleteHandler(evt:styleEvent){}

你可能感兴趣的:(Flex)