Multi-pages Flash application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T05:31:54Z http://stackoverflow.com/feeds/question/559897 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/559897/multi-pages-flash-application 1 Multi-pages Flash application aximili 2009-02-18T05:01:28Z 2009-03-04T00:32:32Z <p>I am very new to Flash and I need help to get started with building multi-pages Flash application.</p> <p>I managed to open another swf file (called Page1) from within the main swf by calling this function</p> <pre><code> private function LoadExternalSwf(): void { var loader:Loader = new Loader(); var urlReq:URLRequest = new URLRequest("page1.swf"); loader.load(urlReq); addChild(loader); } </code></pre> <ol> <li><p>How do you add a sort of "Back" button to Page1 so that it will close itself (so that we are back to the main screen)?</p></li> <li><p>If Page1 were a movie, is it possible to automatically close it after it finishes playing?</p></li> </ol> <p>(I am using Flash CS3, Flex Builder 3, AS3)</p> <p>Thank you</p> http://stackoverflow.com/questions/559897/multi-pages-flash-application/560272#560272 2 Answer by James Hay for Multi-pages Flash application James Hay 2009-02-18T08:38:04Z 2009-02-18T08:38:04Z <blockquote> <p>How do you add a sort of "Back" button to Page1 so that it will close itself (so that we are back to the main screen)?</p> </blockquote> <p>There are many ways of doing this. You could just hide the page by setting it's visibility to false, you could just move it off stage so that it can't be seen or you could remove the movieclip altogether (along with probably other options). Basically it's completely up to you and you must choose the best option to suit your purposes.</p> <p>In your example you want page1.swf to have a button that, when clicked on, tells it's parent to do something. I would personally recommend that this happens by dispatching an event when the button is clicked. The parent can then listen to page1 for that event. When it catches that event, you can then choose what to do with page1.</p> <p>I suggest you have a read of some articles regarding events in actionscript 3 to find out how this is achieved. Try <a href="http://www.adobe.com/devnet/actionscript/articles/event_handling_as3.html" rel="nofollow">this one</a> for starters</p> <blockquote> <p>If Page1 were a movie, is it possible to automatically close it after it finishes playing?</p> </blockquote> <p>Yes this is also possible and again i would use the same method as stated above. Dispatch an event on the final frame (or when at least you know the final frame has been hit) that tells it's parent to do something.</p> http://stackoverflow.com/questions/559897/multi-pages-flash-application/568269#568269 0 Answer by aximili for Multi-pages Flash application aximili 2009-02-20T04:21:11Z 2009-02-20T04:21:11Z <p>How do you dispatch an event from Page1, and how do you catch it on the main swf?</p> http://stackoverflow.com/questions/559897/multi-pages-flash-application/608826#608826 0 Answer by aximili for Multi-pages Flash application aximili 2009-03-04T00:32:32Z 2009-03-04T00:32:32Z <p>Solution:</p> <p>From page1:</p> <pre><code>// Dispatch a "pageFinish" event to the loader/parent/container if any if (loaderInfo.loader) loaderInfo.loader.dispatchEvent(new Event("pageFinish", true)); </code></pre> <p>From the main swf:</p> <pre><code>// Listen for the "pageFinish" event loader.addEventListener(EVENT_PAGEFINISH, OnPageFinish); ... private function OnPageFinish(event: Event): void { ... } </code></pre>