Re: [flexcoders] very odd error

2009-01-28 Thread nwebb
[mailto:flexcod...@yahoogroups.com] *On Behalf Of *Maciek Sakrejda *Sent:* Friday, January 23, 2009 8:55 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] very odd error This can also happen when you link against a certain class, but the version of that class supplied at runtime has

RE: [flexcoders] very odd error

2009-01-23 Thread Gregor Kiddie
Check the names of the objects you are using... have you got an object named the same as a class (different case is what usually catches people out) and then used the classname rather than the object name when passing a parameter? If it genuinely is a class cast between same types, it looks

Re: [flexcoders] very odd error

2009-01-23 Thread Maciek Sakrejda
This can also happen when you link against a certain class, but the version of that class supplied at runtime has changed. E.g., 1. you build module foo.swf against application bar.swf with load-externs 2. your module uses class Baz from bar.swf 3. you rebuild bar.swf, changing Baz slightly 4.

RE: [flexcoders] very odd error

2009-01-23 Thread Alex Harui
: Friday, January 23, 2009 8:55 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] very odd error This can also happen when you link against a certain class, but the version of that class supplied at runtime has changed. E.g., 1. you build module foo.swf against application bar.swf