[flexcoders] Flex 4 and StyleManager

2010-04-22 Thread bobby_world
Hi! I have a Flex4 based Application and I'm trying to load Styles from a swf file. StyleManager.loadStyleDeclarations("styles/BlueBackground.swf", true); I get an error saying this is deprecated in Flex4. Bobby

Re: [flexcoders] Flex 4 and StyleManager

2010-04-22 Thread Haykel BEN JEMIA
Hi, Flax 4 supports per-module style management and the StyleManager is not a singleton anymore. Each module has its own StyleManage and you have to reference that one. For UIComponent and subclasses (all visual Flex components), the style manager is available in the styleManager property. For you