[flexcoders] Re: ModuleLoader.child is null

2011-11-04 Thread valdhor
d that the module 'ready' event may be dispatched before it's ready... > > > To: flexcoders@yahoogroups.com > From: valdhorlists@... > Date: Fri, 4 Nov 2011 16:10:22 +0000 > Subject: [flexcoders] Re: ModuleLoader.child is null > > > > > > > >

RE: [flexcoders] Re: ModuleLoader.child is null

2011-11-04 Thread Philip Smith
patched before it's ready... To: flexcoders@yahoogroups.com From: valdhorli...@embarqmail.com Date: Fri, 4 Nov 2011 16:10:22 +0000 Subject: [flexcoders] Re: ModuleLoader.child is null In your module code I don&#

[flexcoders] Re: ModuleLoader.child is null

2011-11-04 Thread valdhor
In your module code I don't see where it implements com.storefront.interfaces.controller.ITest. If there is no implementation of the interface, the child will be null. --- In flexcoders@yahoogroups.com, "method_air" wrote: > > Can anyone explain why ModuleLoader.child is null in the module even

Re: [flexcoders] Re: ModuleLoader.child is null

2011-11-03 Thread Alex Harui
To: flexcoders@yahoogroups.com From: loudj...@hotmail.com Date: Thu, 3 Nov 2011 19:36:57 + Subject: RE: [flexcoders] Re: ModuleLoader.child is null >> Perhaps you're getting an error on load; probably due to the path. Try >> adding an event listener for ModuleEvent.ERROR. The ModuleE

RE: [flexcoders] Re: ModuleLoader.child is null

2011-11-03 Thread Merrill, Jason
coders@yahoogroups.com Subject: RE: [flexcoders] Re: ModuleLoader.child is null The module loads fine in a simple testbed, but in this particular larger application context, fails (and it's time consuming/costly debugging, when by all extents and purposes, it should work). In the end, I can ach

RE: [flexcoders] Re: ModuleLoader.child is null

2011-11-03 Thread Philip Smith
type... To: flexcoders@yahoogroups.com From: loudj...@hotmail.com Date: Thu, 3 Nov 2011 19:36:57 + Subject: RE: [flexcoders] Re: ModuleLoader.child is null >> Perhaps you're getting an error on load; probably due to the path. T

RE: [flexcoders] Re: ModuleLoader.child is null

2011-11-03 Thread Philip Smith
._moduleLoader.child is still null here though. I get the same problem using mx and spark ModuleLoader. So unless someone can spot the problem, I'm going to use SWFLoader... To: flexcoders@yahoogroups.com From: timh...@aol.com Date: Thu, 3 Nov 2011 18:35:10 +0000 Subject: [flexcoders] Re

[flexcoders] Re: ModuleLoader.child is null

2011-11-03 Thread turbo_vb
Perhaps you're getting an error on load; probably due to the path. Try adding an event listener for ModuleEvent.ERROR. Also, this line is missing an equal sign: var test:ITest ITest(this._moduleLoader.child); Should be: var test:ITest = ITest(this._moduleLoader.child); -TH --- In flexcoders