ActionScript 2.0 :: Unload A External Movie With A Xml Menu?

Mar 8, 2009

i have this menu, that has the general actionscripting on the button, but the characteristics are in the xml file... color, and file name..

in the main movie, the button's actionscript i have:

ActionScript Code:
// On press goes to the link setted in the xml
area.onPress=function(){

[Code]....

what do i do to unload the movies each time another is loaded?

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Unload Main-menu Then Loading External Swf?

Feb 11, 2010

My project is PC software and not related to web.It contains of Main menu and 3 external SWF (Total 4 Files).Inside the Main-Menu 3 buttons , when the user click on button # 1 or # 2 or # 3 I want a code to unload the main menu first then open external swf # 1 or #2 or #3 depending on which button user click.I use this code to load the external SWF:

Code:
var myLoader:Loader = new Loader;
addChild(myLoader);
var url:URLRequest = new URLRequest("f1.swf");
myLoader.load(url);

Its working fine but the problem it load the external swf with the main menu in the same time! what I want a code first unload Main-menu then loading external swf. and another code in external SWFs to exit to Main-Menu with ofcorse unload the swf first then exit to main-menu.

View 5 Replies

ActionScript 2.0 :: Unload Movie For External Loaded Movie

Jul 31, 2010

i want to make an presentation,, for which.. at frame i click a button on frame 9 it goes to frame 10 and plays.. like my script on frame 10 is below

[Code]....

and when i click another button to go frame 1 from the same page at 10,, placed beside the loading external swf ,, it goes,, but the loaded external swf file is not going ,, or the external file not cleaning,, not removing.

View 5 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 2.0 :: Load External Movie And Than Unload It?

Jan 5, 2009

I didn't work with flash some time, but now I am making site for my furniture shop and I have stuck.Because web site is quite big with many pictures, I had to insert "loading external movies" function, and I have used this function[cod]e...

View 4 Replies

ActionScript 3.0 :: Load And Unload External Flash Movie?

Mar 23, 2011

i have a flash movie that loads in two external swf files.

The movie has two buttons each of which loads in a seperate movie, now this allworks fine and to be honest i just used the script assist function to make it all work.

Now my problem is that if i press button number one it loads in the first movie but then i have to press button number one again to unload the movie which means if i press button number one followed by button number 2 i do not unload a movie and they both play together one on top of the other.

is there away that i can have each of the buttons check to see if a movie is loaded and if it is unload it first.

below is my code.

ActionScript Code:
button_3.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_3);
var fl_Loader_3:Loader;

[Code].....

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 2.0 :: Unload Movie Stuff - Current Swf To Unload And The New One To Load Only After A Transition Occurs

Jun 16, 2003

I want the current swf to unload and the new one to load only after a transition occurs. Is there a more efficient way to do this than if. switch()?

View 2 Replies

[cs4] Remove Context Menu Of Loaded External Movie

Mar 26, 2010

Scenario:
child.swf is loaded in parent.swf

I do not have .fla for child.swf (done by somebody else)

Problem:

The child.swf contains custom context menu. I need to suppress this menu and provide the menu of parent.swf even when child.swf is loaded.

View 3 Replies

ActionScript 2.0 :: Load External MAC(ish) X Menu Into The Main Movie?

Mar 2, 2003

loading external mac x menu into my main movie. My main movie contains emty mc named "container" to load external.swf's and another emty MC named "menu" to load external "menu.swf" the problem i have once i load menu.swf into a level of my main.swf then the menu functions won't work at all.

View 4 Replies

ActionScript 2.0 :: How To Get First Sub-menu To Unload

Jan 2, 2009

Does anyone know how to, or of any tutorials that have drop down menus like this:[code]I don't mean the way it moves around, but how the sub-menus load underneath.I want to create a horizontal navigation where you click on a main button, and a sub-menu loads underneath the main navigation. Then I want the same for the other buttons. But I can't figure out how to get the first sub-menu to unload when the new sub-menu loads.

View 1 Replies

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 :: Unload/Load Movie Clips In Parent Movie From Buttons In Child Movie?

Feb 12, 2009

I Have 3 Movies:MAIN.SWF, contains loading movie actions for Nav.swf and Home.swf.NAV.SWF, contains navagation menu loaded on Level 2 in Main HOME.SWF, contains slideshow for home page loaded on Level 1 in Main In NAV.SWF, there is a MOVIE CLIP "graphmc", which contains a BUTTON "graphicbtn", When this button is clicked, I'd like the HOME.SWF (which is loaded into Main.swf on Level 1) to fade out and unload, and load and fade in Graphics.SWF in place of it.

View 6 Replies

Actionscript 3 :: Unload Content - Main Menu?

Mar 31, 2011

i am new to flash actionscript 3 and trying to learn. I have a made a simple menu that has "start game" option. When the uses preses "start game", i hide the menu and the game starts. Now if i want to go "quit" and go the menu screen, how can i do this? How do i erase/stop the game that the user just played?

View 1 Replies

ActionScript 2.0 :: RemoveMovieClip - Unload Menu OnRelease

May 10, 2006

I am using this script in the 1st frame to load external XML file

PHP Code:
this.createEmptyMovieClip("container", this.getNextHighestDepth());
var myXML:XML = new XML();
var links:Array = new Array();
myXML.load("myMenu.xml");myXML.ignoreWhite = true;
myXML.onLoad = function (success:Boolean){
[Code] .....

In the same frame I have another button, on release I want the actionscript to unload this menu. I tried using
PHP Code:
_root.myXML.removeMovieClip();
But seems not working out.

View 2 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

ActionScript 2.0 :: Clear Memory Or Unload A Swf File Through Html Or Through The Main Menu Swf?

Jan 21, 2004

I have a menu and each button reveals a hidden layer which includes it's submenu (another swf).The submenus have sub-submenus in the same swf.When I take the mouse away from these layers the submenus hide again.All these work.The problem is that when a sub-submenu is opened and then the layer hides, when it's shown again the sub-submenu is still opened.Is there a way to clear memory or unload a swf file through html or through the main menu swf?

View 2 Replies

ActionScript 2.0 :: Load A Movie From A Specific Frame And Unload A Previously Loaded Movie?

Mar 28, 2010

I am making a flipping page book in flash and have had to create sections in different movies because it kept crashing when i tried to have all the pages in the same movie. I have 3 movies 'page flip4', 'pageflip4-2', and 'page flip 4-3' . I have used the code below to go (flip bacwards) from 'page flip4-2' to the frame label ''backflip'' in 'page flip4'..This works fine

Code:
on (press) {
loadMovieNum("page flip4.swf", 1);
}

[Code].....

View 0 Replies

ActionScript 1/2 :: Unload Parent Movie After OnloadInit Of Child Movie?

Jul 30, 2010

I am loading external swf's into a main load.swf, using a Moviecliploader object. What I basically want to do is that, after an external movie, say home.swf, loads another external swf, say about.swf, home.swf should be unloaded.
 
home.swf is loading about.swf into the _root.mc_holder, which is placed inside load.swf. I want all external files to be placed within this holder. Now this is working with some files, but not with others. My standard code within all files is this:
 
//code within home.swf to load about.swf
var loader:MovieClipLoader = new MovieClipLoader();var ldrlistener = new Object();loader.addListener(ldrlistener);ldrlistener.onLoadStart =

[Code]......

View 3 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 2.0 :: UNLOAD The CURRENT MOVIE First Before Loading Another MOVIE

Apr 15, 2003

I have a button ( 3 buttons ) and each button is assigned to Load a movie. When you click one of the buttons, the LoadMovie on Level 1 is good. Now here is my problem, how will I unload the current movie before Loading the next one. I want to UNLOAD the CURRENT MOVIE first before loading another MOVIE.

View 2 Replies

ActionScript 2.0 :: Unload Movie Then Load Another Movie Same Button?

Jun 5, 2004

can I script a buttons to unload a movie clip or swf, then load a different movie?

View 6 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 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







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