vote up 0 vote down star

I have this code that works from an .as file

if (loaderInfo.loader)
	loaderInfo.loader.dispatchEvent(new Event("pageFinish", true));

Then I put the above code into an .fla file (another existing Flash file), but (loaderInfo.loader) always returns false, eventhough it is loaded from another swf. Hence the event is never dispatched.

Edit: I'll try explaining it a bit more.

This works:
container.swf --(loads)--> page1.swf (page1.fla + page1.as)
page1.swf does send the event to container.swf

This does not work:
container.swf --(loads)--> page2.swf (page2.fla)
page2.swf does send the event because loaderInfo.loader returns false here

There is no changes to container.swf between both cases, only changed an xml file to point to either page1.swf or page2.swf

flag

Just checking, is "page1.as" the DocumentClass of page1.fla ? – Theo.T Mar 4 at 1:39
The document class of page1.fla is "page1", the same of the .as file without the extension. – aximili Mar 4 at 1:45

2 Answers

vote up 1 vote down check

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, ApplicationDomain, 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);
}
link|flag
Thanks Theo. Sorry I am pretty new with Flash, I don't really understand your comments. But I've added more details to the question to make it clearer. Thanks :) – aximili Mar 4 at 1:09
Sure. Just try to add the code above on the main timeline of the clip you are loading (page2.fla) ... or in the constructor of its document class. – Theo.T Mar 4 at 1:27
Theo, all three of them returned undefined, the same as when you run it on its own. The event dispatch (and those trace) is called after the movie has finished playing so I doubt it hasn't been fully constructed? – aximili Mar 4 at 1:30
Btw, where is the main timeline? There are several frames that contains code, but I don't think there is any constructor... Thanks Theo – aximili Mar 4 at 1:33
By "Main Timeline" I mean the first frame of the most top-level timeline (not a child MovieClip). – Theo.T Mar 4 at 1:44
show 10 more comments
vote up 0 vote down

loaderInfo is used if the swf is loaded via a Loader object. If that compiled fla swf is loaded via a Loader then loaderInfo.loader will not return false

link|flag
Thanks Bjorn. But the "container" that loads both swf files is the same one. I added more details to the question :) – aximili Mar 4 at 1:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.