show/hide this revision's text 2 Added some extra info in the first point

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);
}
show/hide this revision's text 1

Haven't been able to test this but just from the top of mind:

  1. Make sure the loaded swf has got the rights to access the loader (LoaderContext, ApplicationDomain, etc.)

  2. 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); }