Haven't been able to test this but just from the top of mind:
Make sure the loaded swf has got the rights to access the loader (LoaderContext, LoaderContext, ApplicationDomain, etc.)etc.).
You can test this by writing this within your loaded clip:
trace(loaderInfo.childAllowsParent);
trace(loaderInfo.ParentAllowsChild);
trace(loaderInfo.sameDomain);
If one of those traces returns false, let us know...
Make sure your document has been fully constructed when you try to access its loader.
loaderInfo.addEventListener(Event.INIT, eventComplete);
loaderInfo.addEventListener(Event.COMPLETE, eventComplete);
function eventComplete(event:Event):void
{
trace(event.target.loader);
}
