Actionscript 3.0 :: Unload External Swf From Nav Button?

Jun 22, 2009

I have 3 nav btn and each btn load an external swf successfully. My problems is it doesn't unload. I have tried adding pageLoader.unload(page) and mcContainer.removeChild(pageLoader) but it doesn't work. The code below contains load external swf only.What is the best way of unload a swf using as3?

var mcContainer:MovieClip;
var pageLoader:Loader = new Loader();
galleryBtn.addEventListener(MouseEvent.CLICK, galleryPage);

[code]....

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Unloading A Loaded External SWF With A Close Button On The External SWF To Unload?

Aug 15, 2011

[URL]I have: main.swf (a menu) and I have module.swf (content)If you navigate to Subsea Wellhead Systems/SS-15 BigBore II and click on that I have it load an external swf which covers most of the parent. So far so good. My problem is unloading the loaded 'Child' swf with the button provided on the loaded 'Child' swf.below is the code I used to load the file but I cant, for the life of me, find a way to unload it. 
 
var bigboreLoader:Loader = new Loader();btnbb2.addEventListener(MouseEvent.MOUSE_UP, bigborecontent);
function bigborecontent(event:MouseEvent):void{var bigboreRequest:URLRequest = new URLRequest("moduletemplate.swf"); bigboreLoader.load(bigboreRequest); stage.addChild(bigboreLoader);
 
I am certain it requires the Child to communicate with the parent somehow but I am at a loss. If I could get a bit of advice or a link to something deal with this, it would be a big help. I just need to have my links load my modules and the remove them when the close buttong is hit on the loaded swf. I promise I have done searches and I admit I have found asnwers but still they are not working. I found the code below:
 
Main FLA: 
function removeF() {
removeChild(bigboreLoader);
}

[code]....

View 10 Replies

ActionScript 2.0 :: Trying To Unload External Swf With Button

Nov 30, 2010

im using the [code]function to load files into my fla .im trying to put a button in each of the loaded swf files that will tell the main fla to unload the swf and gotoAndStop(1)i have 3 buttons on the first frame of main fla. the first button has [code] different game.so i need a button to unload the game and gotoAndPlay(1) i know how to do this in as3 but im not to familiar with as2.

View 1 Replies

ActionScript 3.0 :: External SWF Unload Itself Using Button From Within?

Mar 15, 2011

Everything works perfect except for one problem I just can't figure out. On the homepage, called "home_page_swf", I have three buttons at the end of three paragraphs that say "Learn More" and need them to trigger the "home_page_swf" to unload itself and replace it with one of the other external swf pages. I basically want the three buttons within the "home_page_swf" to perform the same function as the "Services", "Portfolio", and "Team" buttons that are located in main swf. I've been trying to read up on it and I keep finding something about "Dispatch Even" but can't figure out how to apply it to the code I am using for the website I'm working on. I'll post the code below for the main navigation swf and what the labels are for the buttons that are inside the external swf called "home_page_swf".

Main SWF with main navigation buttons:
var Xpos:Number = 0.0;
var Ypos:Number = 0.0;

[code]....

View 1 Replies

ActionScript 3.0 :: Unload The External Swf After Each Button Click?

Sep 8, 2011

I have an external swf that is loaded at frame 2 of the main timeline. The external swf has code that plays an flv, i've pasted the code below for the button that navigates the play head to the fram label 'frame2'. I want to know, how can i unload the external swf after each button click? Does the code for unloading have to go to in the button code or the main timeline?
 
anim_mc.stop();
anim_mc.addEventListener(MouseEvent.MOUSE_OVER, onMouseOver);anim_mc.addEventListener(MouseEvent.MOUSE_OUT, onMouseOut);anim_mc.addEventListener(MouseEvent.CLICK, onClick);
anim_mc.buttonMode = true;anim_mc.mouseChildren = false;

[code]....

View 22 Replies

Flash :: Load External Swf From A Button In It And Unload Self?

May 13, 2010

I am an uber n00b to flash AS3. And it is not my intention to sound like a complete moron, but honestly, I have had a hard enough time figuring out just how to load an external .swf into my main file! add a button within the external .swf which will unload itself and load a new on in its place.

View 1 Replies

ActionScript 3.0 :: Unload Movie Button On External Swf?

Jun 29, 2010

i have a homepage - home.swf, with a button - btn_menu, that loads menu.swf.

btn_menu.addEventListener(MouseEvent.CLICK, menu);
function menu (e:MouseEvent):void{
var request:URLRequest = new URLRequest("menu.swf");

[Code].....

the above part gives an expanded menu and it works fine. now i have a minimize button on the menu - btn_mini, that effectively removes the menu.swf

btn_mini.addEventListener(MouseEvent.CLICK,unloads wf);
function unloadswf(event:MouseEvent)
{

[Code].....

View 9 Replies

ActionScript 3.0 :: SWF Unload Itself And Load A New One From Button Within External SWF?

Mar 15, 2011

SWF Unload itself and load a new one from button within External SWF?

View 1 Replies

ActionScript 3.0 :: Load/Unload External Swf With 1 Button

Oct 14, 2011

I have a main swf (call it Main1). Main1 calls an external swf (call it swf1). Swf1 loads on top of Main1 like it should. Swf1 has a button that calls another swf on top of Main1(call this Swf2). Well the problem is, the button on Swf1 calls Swf2 on top of itself, instead of removing Swf1 first. I cannot figure this out for s*** how to make this work. How can I unloading Swf1 from the loader, and at the same time load Swf2 into the loader from a single button residing on Swf1? My code is below.

Main1 has a button (click_btn) that loads Swf1 (click_btn is in a Movie Clip, not on main timeline)

ActionScript Code:
stop();
click_btn.addEventListener(MouseEvent.MOUSE_DOWN, loadMC)
function loadMC(ev:MouseEvent){

[Code].....

How can I incorporate something like the close button (closer) into done_click to close Swf1 when I call Swf2 from this button (done_click)

View 4 Replies

ActionScript 3.0 :: Use One Button To Load And Unload External Swfs?

Jun 24, 2011

How can I use one Button to load and unload a sequence of external swfs, Like a Next Button and Previous Button?

View 1 Replies

ActionScript 3.0 :: Using One Button To Load And Unload External Swfs ?

Jun 24, 2011

How can I use one Button to load and unload a sequence of external swfs, Like a Next Button and Previous Button?

View 5 Replies

ActionScript 3.0 :: Unload Not Unloading - Unload An External SWF On _root To Load A New One Instead

Jul 23, 2009

I'm trying to unload an external SWF on _root to load a new one instead. I've tried (almost) everything but can't figure it out... I get this error : "Error #1010: A term is undefined and has no properties."

[Code]....

View 3 Replies

ActionScript 3.0 :: Unload The Previous Loaded .swf And Load The New .swf Without Having A Separate Button To Unload

Aug 9, 2008

I am working on a school project that requires me to load external .swf or .jpg files. I currently have all of the buttons working and are loading an external .swf file on to the screen. The problem I am having is that when I go from one button to the next the loaded .swf stays on the screen and the next .swf gets loaded on top of it. I know that I need to unload the file but I am not sure where to put the code for the unload or what code exactly to use. I would like when the button is pressed to unload the previous loaded .swf and load the new .swf without having a separate button to unload.

[Code]...

View 3 Replies

ActionScript 3.0 :: Load External SWF And Unload External SWF

Jun 13, 2010

I'm sure this question has been answered but I have been looking everywhere and all I can find is how to load an external SWF but not how to unload it. I come from a basic knowledge of AS2 and it was easy for me to load using levels but I have run into a wall. I have a main swf and to keep the initial filesize small I would like to split some image intensive sections out and load them when needed.

View 6 Replies

IDE :: Unload External Swf?

Apr 12, 2009

My index page has two buttons... 'about' and 'portfolio' which loads each respective external swf into a holder.When 'portfolio' is loaded there are another 8 buttons which again load 8 external swfs into a holder in the portfolio.swf. Each of the 8 external swf files load fine, but is there anyway to have a back button instead in each of the 8 external swf to go back to the portfolio.swf without having to click the 'portfolio' button?i have tried _root.unloadMovie.... but it just clears the stuff on my index page and loads the portfolio.swf

View 1 Replies

IDE :: How To Unload External Swf

Mar 18, 2010

i am trying to create a file where a mc hittest another object(using keyboard arrow) it loads an external swf and when keypress to leave the object, it will unload the external swf. my problem is the external swf did load but it wont unload. attached herewith my fla file for reference. script as below,

mcMain.stop();
var leftArrow:Boolean = false;
var rightArrow:Boolean = false;
var downArrow:Boolean = false;

[Code]......

View 1 Replies

ActionScript 3.0 :: Unload An External Swf?

Jan 20, 2010

I have a movie wherein on the stage I have a empty MC with the instance name of mainImage.

There is a menu with listeners that load in different swfs externally into this 'mainImage' clip. The problem I discovered is that I cant seem to unload the old swfs upon the loading of a new one.[code]...

View 2 Replies

ActionScript 3.0 :: Unload External Swf Self?

Jan 17, 2011

I am migrating to AS 3.0 from AS 2.0 and I am unable to unload a loaded movie self.In AS 2.0 i simply used "unloadMovie(this);" have also tried "removeChild(this);" but it doesn't work.

View 1 Replies

ActionScript 3.0 :: Unload The External Swf

Nov 16, 2008

I am loading 5 external swf's into 5 different "buttons".Right now they all load, but they load on top of each other.

View 2 Replies

ActionScript 3.0 :: Way To Unload External SWF's

Mar 22, 2009

I was finally able to work out a way to attach and preload external SWF files - now I am on the hunt to understand how to unload the external SWF file on a mouse event so that a new SWF file can be played.

View 20 Replies

ActionScript 3.0 :: How To Unload External Swf

Mar 7, 2008

I have a main SWF (=Homepage) which displays contents that are external SWFs. Now I have figured out how to load external SWF in my Homepage (when you click a button - see code below), but I don't know how to unload them according to my needs... See, I have a "close button" in every external SWF and with AS3, I'm a little lost on how I should proceed to make this button unload the external SWF displayed on the Homepage...

[Code]....

View 9 Replies

IDE :: Unload External Swf And Load New One?

Jul 29, 2008

I'm creating my portfolio in Flash CS3. I have five buttons in website.swf. I also have five external swf files.If you click a button, it loads an external swf. If you click another button, it unloads the first swf and loads the next one. Is there anyway to unload it and load the next?

stop();
function loadMain(e:MouseEvent):void{
var loadMain:Loader = new Loader();

[code]....

View 14 Replies

ActionScript 3.0 :: Load And Unload External Swf?

Oct 7, 2009

I have this simple code to play and stop external swf[code]...

View 6 Replies

ActionScript 3.0 :: Load And Unload External.swf?

Oct 28, 2009

OK this should be the last of the coding to complete my AS2 to AS3 conversion of a site. The AS2 site had an external photogallery .swf that loaded from a navigation button on the main timeline. It used the loadMovie function so it loaded a photogallery on top of the main .swf in level one.
 
I also had unloadMovie,1 in all the navigation buttons so if a user was in the gallery and they clicked anywhere else in the main .swf which is all in level 0 the gallery in level 1 would be deleted.
 
In this situation the gallery that will be loaded on top of the main.swf needs to be a little smaller than the main ,swf so the navigation on the top of the main shows through. If the main.swf is 900 x 600 I would need to load the photogallery on top which would be 900 x 450 and need to use x and y coordinates so when the swf loads it loads in the right spot.

View 1 Replies

ActionScript 3.0 :: Unload External SWF File

Apr 17, 2010

I loaded an external SWF file, now I need to understand how to unload the external SWF file. Is it possible to add the code to the last frame of the external SWFs internal timeline, so when it exits the last frame, it unloads itself.The script to load the SWF is below. Can I add the unload code to the last frame of timeline of the SWF?[code]

View 3 Replies

ActionScript 3.0 :: Unload Event For External Swf?

Jun 17, 2010

I've mp3, eksternally loaded and I controlled from main time...the bugs are1. If I wanna go to another .swf file, i still can hear the sound...2. if I click the button wich linked to mp3.swf, the sound/song are duplicated by2, and then if I click again the sound are duplicated by3...how I can fix this problem??? oia, the buttons to call another swf are only in main swf, and here is the code://zhe button

var Xpos:Number = 140;
var Ypos:Number =100;
var swf:MovieClip;
var loader:Loader = new Loader();[code].................

View 6 Replies

ActionScript 3.0 :: UNLOAD External SWF On Mouseclick?

Oct 12, 2010

All of my buttons load their respective external swf files. However, they load on top of each other. How do I set each button to UNLOAD the external swf's that have already been loaded by the previous buttons.Here is what I have now:
 
movieClip_1.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF); 
var fl_Loader:Loader; 
//This variable keeps track of whether you want to load or unload the SWF 
var fl_ToLoad:Boolean = true; 

[code]......

View 2 Replies

ActionScript 3.0 :: Unload External SWF Before Loading New One

Feb 4, 2009

I am building a portfolio, but lately I've been experienced some annoying problems with loading external swfs into a container. Everything works like charm, but when I load new clips into the container, they are just put on top of the old ones - which I naturally don't want to happened. This is the current coding I use for two of the different links. I pressume that one solution would be to add a removeChild, but I've not succeeded placing this in the right place yet.

ActionScript Code:
fashionBTN.addEventListener(MouseEvent.CLICK,fashionBN);
function fashionBN(event: MouseEvent) {
var goFashion =new Loader();
goFashion.load(new URLRequest('fashionPRE.swf'));
contentsMC.addChild(goFashion) }
[Code] .....

View 9 Replies

ActionScript 3.0 :: Unload External SWF On Frame

Nov 11, 2009

I am building an on-line game for autistic children, and I am facing a problem where I load a SWF to play a mini game. Although when the mini game is over I want to go back to the original SWF (and a different scene to which I left.)

I use:

var request:URLRequest = new URLRequest("hidenseek.swf");
var loader:Loader = new Loader()
loader.load(request);
addChild(loader);
stop();

To load the swf, although I can't figure out how to unload it on a frame, and then on top of that take it back to original SWF to a new menu?

A work around could be to just have the new menu in the loaded SWF? Could I unload the original SWF or do I have to always keep it open?

View 9 Replies

ActionScript 3.0 :: Different Case Of Unload External Swf?

Dec 8, 2009

i'm making a flash website with AS3, so we have index.swf and about.swf

index.swf

|'~> main.as // here is all my script attached to index.swf
'~> in a folder / about.swf

Now i load my about.swf in index.swf with no problems, i need to make a close button in about.swf to unload it from index.swf,

here is my code:

Main.as =

ActionScript Code:
package org.FlepStudio{
import flash.display.*;
import flash.events.*;

[Code].....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved