vote up 0 vote down star

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.

When the application is debugged, the following runtime error can be seen in the trace output, but is not raised as an exception.

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

Update

Now that I've determined the actual problem, I've editted the question to be more useful and direct.

flag
Could you post the contents of the CSS file, so that we can see what kind of statements might be causing these errors? – defmeta Oct 2 '08 at 3:25
I can't post the entire CSS for NDA reasons, but I have included a specific sample of what's causing the problem. – andrew.traviss Oct 2 '08 at 17:52

2 Answers

vote up 1 vote down

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.

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.

Rename the classes used by one application or the other in order to resolve this issue.

link|flag
vote up -1 vote down

an article explaining right way to implement css in flex http://askmeflash.com/article_m.php?p=article&id=6

link|flag
This is in no way related to the issue at hand. And that's absolutely not the right way to implement CSS in Flex. (I don't have the reputation to downvote, but I would if I could!) – Troy Gilbert Apr 16 at 20:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.