[flexcoders] Diagnosing a TypeError #1034 with RSLs

2011-11-02 Thread Nigel Magnay
I've just been updating our build to use the latest Flexmojos 4.1-beta, and to use RSL versions of the 4.5.1 flex framework. To do this, I've included all the dependencies in a manual, correct order, so that the RSL load order is correct. I've even manually added entries to get the correct

Re: [flexcoders] Diagnosing a TypeError #1034 with RSLs

2011-11-02 Thread Alex Harui
What is the code doing? If it is trying to find a class definition by name and can’t that might be the issue. On 11/2/11 12:21 PM, Nigel Magnay nigel.mag...@gmail.com wrote: I've just been updating our build to use the latest Flexmojos 4.1-beta, and to use RSL versions of the 4.5.1

Re: [flexcoders] Diagnosing a TypeError #1034 with RSLs

2011-11-02 Thread Nigel Magnay
It's just passing classes that are constructed in the normal way; - mycorp-flex-xreader rsl defines public class XReader { ... public function XReader(reflectionProvider:ReflectionProvider) {} where public interface ReflectionProvider { ... } public class ASReflectionProvider implements

Re: [flexcoders] Diagnosing a TypeError #1034 with RSLs

2011-11-02 Thread Alex Harui
Try dumping ObjectUtil.toString() on the object in question. On 11/2/11 1:51 PM, Nigel Magnay nigel.mag...@gmail.com wrote: It's just passing classes that are constructed in the normal way; - mycorp-flex-xreader rsl defines public class XReader { ... public function