Use StyleManager.loadStyleDeclarations() to load CSS-based SWF file at run time : StyleManager « Style « Flex






Use StyleManager.loadStyleDeclarations() to load CSS-based SWF file at run time

Use StyleManager.loadStyleDeclarations() to load CSS-based SWF file at run time
     

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        
        import mx.styles.StyleManager;
        public function applyRuntimeStyleSheet():void {
            StyleManager.loadStyleDeclarations("a.swf")
        }
      
    </mx:Script>
    <mx:Label text="Click the button to load a new CSS-based SWF file" />
    <mx:Button id="b1" label="Click Me" click="applyRuntimeStyleSheet()" />
</mx:Application>

   
    
    
    
    
  








Related examples in the same category

1.To remove a CSSStyleDeclaration object, use StyleManager.clearStyleDeclaration()To remove a CSSStyleDeclaration object, use StyleManager.clearStyleDeclaration()
2.Adding global CSS styles with StyleManagerAdding global CSS styles with StyleManager
3.Set the fontSize style to 15 and the color to 0x9933FF on all Button controls in the Spark namespaceSet the fontSize style to 15 and the color to 0x9933FF on all Button controls in the Spark namespace
4.Loadng a style sheet when you click the buttonLoadng a style sheet when you click the button
5.Use StyleManager to apply styles to all classes or specified classesUse StyleManager to apply styles to all classes or specified classes
6.Load and unload style with StyleManagerLoad and unload style with StyleManager
7.ColorFormat StyleManagerColorFormat StyleManager
8.Store selectorss names that are registered with the StyleManager in an Array.Store selectorss names that are registered with the StyleManager in an Array.
9.Color Format with StyleManagerColor Format with StyleManager
10.Using Embedded gif image with StyleManagerUsing Embedded gif image with StyleManager
11.Use hexadecimal format or the VGA color nameUse hexadecimal format or the VGA color name
12.Compare Color value after convert color value to string value with Color.toString()Compare Color value after convert color value to string value with Color.toString()