Flash: .as vs .fla - loaderInfo.loader - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T18:01:55Zhttp://stackoverflow.com/feeds/question/608799http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/608799/flash-as-vs-fla-loaderinfo-loader0Flash: .as vs .fla - loaderInfo.loaderaximili2009-03-04T00:19:56Z2009-03-04T01:30:41Z
<p>I have this code that works from an .as file</p>
<pre><code>if (loaderInfo.loader)
loaderInfo.loader.dispatchEvent(new Event("pageFinish", true));
</code></pre>
<p>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.</p>
<p>Edit:
I'll try explaining it a bit more.</p>
<p>This works:<br>
container.swf --(loads)--> page1.swf (page1.fla + page1.as)<br>
page1.swf does send the event to container.swf</p>
<p>This does not work:<br>
container.swf --(loads)--> page2.swf (page2.fla)<br>
page2.swf does send the event because loaderInfo.loader returns false here</p>
<p>There is no changes to container.swf between both cases, only changed an xml file to point to either page1.swf or page2.swf</p>
http://stackoverflow.com/questions/608799/flash-as-vs-fla-loaderinfo-loader/608842#6088420Answer by Bjorn for Flash: .as vs .fla - loaderInfo.loaderBjorn2009-03-04T00:40:55Z2009-03-04T00:40:55Z<p>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</p>
http://stackoverflow.com/questions/608799/flash-as-vs-fla-loaderinfo-loader/608857#6088571Answer by Theo.T for Flash: .as vs .fla - loaderInfo.loaderTheo.T2009-03-04T00:51:21Z2009-03-04T01:20:18Z<p>Haven't been able to test this but just from the top of mind:</p>
<p>Make sure the loaded swf has got the rights to access the loader (<code>LoaderContext</code>, <code>ApplicationDomain</code>, etc.).</p>
<p>You can test this by writing this within your loaded clip:</p>
<pre><code>trace(loaderInfo.childAllowsParent);
trace(loaderInfo.ParentAllowsChild);
trace(loaderInfo.sameDomain);
</code></pre>
<p>If one of those traces returns false, let us know...</p>
<p>Make sure your document has been fully constructed when you try to access its loader.</p>
<pre><code>loaderInfo.addEventListener(Event.INIT, eventComplete);
loaderInfo.addEventListener(Event.COMPLETE, eventComplete);
function eventComplete(event:Event):void
{
trace(event.target.loader);
}
</code></pre>