Multi-pages Flash application
问题 I am very new to Flash and I need help to get started with building multi-pages Flash application. I managed to open another swf file (called Page1) from within the main swf by calling this function private function LoadExternalSwf(): void { var loader:Loader = new Loader(); var urlReq:URLRequest = new URLRequest("page1.swf"); loader.load(urlReq); addChild(loader); } 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)? If Page1