Runtime CSS fails silently when Flex application is loaded by a non-Flex application - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T05:44:40Zhttp://stackoverflow.com/feeds/question/158996http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/158996/runtime-css-fails-silently-when-flex-application-is-loaded-by-a-non-flex-applicat0Runtime CSS fails silently when Flex application is loaded by a non-Flex applicationandrew.traviss2008-10-01T18:25:19Z2009-03-31T13:43:02Z
<p>I have compiled a CSS swf file which includes embedded skins for my Flex application. In our download product, this CSS works fine. On the web, a non-Flex container is loading the Flex application, and the CSS fails silently.</p>
<p>When the application is debugged, the following runtime error can be seen in the trace output, but is not raised as an exception.</p>
<pre>
method not implemented mx.core::IFlexDisplayObject/mx.core:IFlexDisplayObject::setActualSize()
over-binding 0 in GlobalStyle__embed_css__319796825
accessor not implemented mx.core:IFlexDisplayObject::measuredHeight
over-binding 0 in GlobalStyle__embed_css__319796825
accessor not implemented mx.core:IFlexDisplayObject::measuredWidth
over-binding 0 in GlobalStyle__embed_css__319796825
method not implemented mx.core::IFlexDisplayObject/mx.core:IFlexDisplayObject::move()
over-binding 0 in GlobalStyle__embed_css__319796825
</pre>
<p><b>Update</b></p>
<p>Now that I've determined the actual problem, I've editted the question to be more useful and direct.</p>
http://stackoverflow.com/questions/158996/runtime-css-fails-silently-when-flex-application-is-loaded-by-a-non-flex-applicat/164883#1648831Answer by andrew.traviss for Runtime CSS fails silently when Flex application is loaded by a non-Flex applicationandrew.traviss2008-10-02T22:21:31Z2008-10-03T14:45:44Z<p>The non-Flex application is using content from the library with the same class name as the Flex skins embedded in the CSS swf. Because Flash looks to the most global swf for class definitions, it is using the classes defined by the non-Flex application.</p>
<p>Because this content does not extend UIMovieClip, it is causing the StyleManager to fail. Due to potential security errors, Adobe has wrapped most of this process in try-catch blocks to supress expected runtime errors.</p>
<p>Rename the classes used by one application or the other in order to resolve this issue.</p>
http://stackoverflow.com/questions/158996/runtime-css-fails-silently-when-flex-application-is-loaded-by-a-non-flex-applicat/701027#701027-1Answer by Ronald for Runtime CSS fails silently when Flex application is loaded by a non-Flex applicationRonald2009-03-31T13:43:02Z2009-03-31T13:43:02Z<p>an article explaining right way to implement css in flex
<a href="http://askmeflash.com/article_m.php?p=article&id=6" rel="nofollow">http://askmeflash.com/article_m.php?p=article&id=6</a></p>