ActionScript 2.0 :: Load A Movie To Level 1 That Deactivates The Movie In Level 0 Without Unloading It?
Nov 5, 2004
I have a movie that's 500x400 px in level 0 and has lots of thumbnails with pictures that I want to open. the thumbnails open a 500x400 px movie above the other but on level 1. the problem is that when the new movie loads on level 1, the thumbnails on level 0 (that are now hidden by the new movie) are still active, and if i click anywere in the movie on level 1, it trigger an action from level 0. Is it possible to load a movie to level 1 that deactivates the movie in level 0 without unloading it?
View 1 Replies
Similar Posts:
Feb 26, 2009
I can't seem to unload a movie, I've tried every possible actionscript code and still it won't go away. My objective is to run in the main stage a sub menu and for that I've done sub pages each one with a previous and next button (inside the movie that will be loaded), and that's the catch. I can't put the loadMovieNum in 0 level because it would replace the main stage. So I'm trying to do on the button:
on (release) {
unloadMovieNum(1); // it was loaded into level 1
loadMovieNum("new_item.swf",1); // he overlays both movies with transparency
}
Is there anyway to remove the actual movie and replace it with the new one?
View 3 Replies
Aug 23, 2004
Let say A is the main movie and B will be a external swf file that i'm going to load into A movie. The problems is that, some actionscript(AS) in my B movie is not working anymore after i load it into A movie. I believe that the AS in my B movie is not working anymore because it is refer to A as the _root instead of B movie as _root. This can be a common problem. So, i wonder what should i change in the B movie AS in order to make it work in A movie.
View 3 Replies
Oct 13, 2009
Is there any method or possibility to load AS3 flash movie in AS2 on level 1, or higer, or in target loder.
View 2 Replies
Apr 19, 2004
I have a button that is a few levels down in movie clips. When It is pressed, it is supposed to load diamonds.swf. It does this, but not on the first press. On the first press the _root time line goes to and plays "fade," but doesn't execute the rest of the script. [code]...
View 2 Replies
Jan 5, 2006
I'm designing a site at the moment & I've run into a minor snag. I am loading about five external swf's, for each page of the site, from the main 'home' page. you can view it here Trouble with levels. I can load the movies fine, but what I want is to load each new movie into a higher level than the last, as each movie appears with a mask (for an example have a look at the site I've done then click on the 'Contact Us' button - that is what I want to do on all of the pages...) all of the swf's are loaded into level one with the exception of the 'Contact Us' page. (By the way, there is no 'News' page yet)
The very simple code I used to load the movies is:
Code:
on (release) {
loadMovieNum("contact.swf", 2);
}
View 1 Replies
Dec 26, 2011
I'm doing a bigger aplication in flash (as2).Image, there is a main "home" flash with several menu buttons.Clicking these buttons, I load external swf into an empty container in this "home" flash.[code]clicking buttons in this second level, will load external movies into an empty container in this SECOND LEVEL swf.This works fine, but now, coming to the THIRD LEVEL (don't think there will be more in the future) problems come up, some scripts won't work.Now (I'm a as2-beginner) I think, loading external swf ALLWAYS into containers in the first "Home" flash should solve the problem.But I don't know, how to load an swf from the third level into a container in the first "home" level.In the "home" level, I have a "close" button, that will unload the container content.I need to go to a certain scene "content_2" in the home swf, too.
View 7 Replies
Feb 7, 2007
I'm using xml to load .flvs into a movie player. I have it setup to load an external .swf to level 1 when the movie is finished. My goal is to have the .swf on level 1 select the next .flv from the xml array by way of simple buttons. Needless to say, it's not working. Anyone care to give it a crack?
[Code]...
View 3 Replies
Jan 15, 2008
how do i load a movie clip SYMBOL at the highest level and then unload it.
i dont want a SFW or JPG to be loaded- that would be one of the symbols from the same swf file.
the issue is- i have used "getNextHighestDepth()" to create movie clips.. now i need to add a box on top of that- so again, i will have to use "getNextHighestDepth()" - which im having hard time to unload (when i use duplicateMovieClip) -
View 5 Replies
Jul 25, 2006
assigning a level for the external movie(reseller_locations.swf) loaded to a moivie clip(clipHolder)
code
loadMovie("reseller_locations.swf", this._parent.clipHolder);
View 1 Replies
Aug 18, 2011
i have a main swf...from the main swf, an external swf is loaded which is a SubMenu.From the Submenu, a SECOND external swf is loaded. I would like a button that closes the SECOND external swf, but the submenu remains.
View 3 Replies
Apr 22, 2011
im trying to create a level select screen so the buttons unlock as you complete a level, so far i have this on each button:
on(release){
if(this.number <= currentItem){
gotoAndPlay(3);
}
}
[Code]...
View 0 Replies
Mar 31, 2009
I have a gallery which is created from the following scipt:
this.createEmptyMovieClip("images",100);
this.attachMovie("mask","mask",101);
etc....,
with the gallery still present i want a movie clip to appear ON TOP of this.
How is this done? i understand i need to set the z level but cannot find a simple explanation of how to do it. I do not want the image to be transparent (i've found lots of explanation on how to do this!)
View 1 Replies
Oct 14, 2011
It may be pretty basic but I'm looking for the easy way out. I've a container that loads a movie on level10 using loadMovieNum(). Is there a way I can get the name of this movie?.
View 5 Replies
Apr 18, 2010
I have an index.swf that loads the following movies.
loadMovieNum("home.swf", 4);
loadMovieNum("home_2.swf", 53);
loadMovieNum("help.swf", 50);
loadMovieNum("glossary.swf", 26);
loadMovieNum("Resources.swf", 27);
Is there a way to unload the home_2.swf from the index page when a button is clicked on the home.swf?
Home_2.swf is sort of a splash animation that plays over the navigation panel and then sits on the side so when any of the nav buttons are clicked on in level 4 .swf I want the level 53 .swf to unload.
View 2 Replies
Oct 19, 2005
Im having trouble with this script again. I need to load a movie on the 2nd leve this is the script here.
// Time value, in milliseconds, after which, failing any mouse movement, an action is to occur.
numMouseTimeoutMS = 30000;
// Define what is to happen should the mouse be moved.
[Code]....
View 2 Replies
May 11, 2006
Preload movie into level with percent, can this be done? I have tried several preloads from posts in the boards but none seem to work.
I have my main movie, and buttons that load the movies into the main movie by using LocalConnection(); I am using the following action script to load my movies, now I like to add a preload on the loadMovieNum(movie, 2); part.[code]...
View 1 Replies
Nov 5, 2002
I am loading a swf into a level, but need to use actionscript to manipulate its location in the root movie. This is my code:
stop ();
loadMovieNum ("logo_sm.swf", 1);
_level1._x = 300;
// whatever you want for upperleft x
_level1._y = 300;
// whatever you want for upperleft y
yet the loaded swf continues to load in its native position, rather than at any coordinate which I specify. It is riding in the upper left hand corner, even tho here I am indicating a much different position.
View 5 Replies
Aug 26, 2010
I have two layers in my FLA both with empty movie clips as follows:In mc_Empty1, I attach a faded background movieclip as I wait for mc_Empty2 to load a SWF. Once the SWF is loaded into mc_Empty2, I want to remove the faded background movieclip from mc_Empty1. When I load the SWF from the main timeline, the onLoad() function works and removes the faded background from mc_Empty1. However, when I load the SWF from mc_target, the SWF loads, but the onLoad() function does not. Here's my AS2 code:
//Loading SWF from main timeline
mc_Empty1.attachMovie("mcFadedBg", "mc_FadedBg", 1);
mc_Empty2.loadMovie("My.swf");mc_Empty2.onLoad = function():Void{ trace("loaded"); //This works removeMovieClip(mc_Empty1.mc_FadedBg); //This works}
[code]....
I know I'm targeting properly because the SWF loads as it should, but the onLoad() function does not.
View 3 Replies
Oct 2, 2010
This is making me a little kooky today. I thought I could defined a library path in PREFERENCES > ACTIONSCRIPT > ACTIONSCRIPT 3.0 SETTINGS then that library would be available to all AS3 FLA files, but that doesn't seem to work for me. If I use the PUBLISH SETTINGS and define the library path everything is fine.
Is there something that I could have done to disable the application level class path functionality? I guess I'm trying avoid having to set the library path for every new FLA I'm making.
View 1 Replies
Jan 8, 2009
If I writing actionscript on the _root level, but I want to reference a movieclip that is on a different level, how would I go about doing this?I know that if it was reversed I would something like this:_root.home_btn.onRelease = function () {Would I just do the name of the level, "_level2.home_btn.onRelease = function() { ?
View 7 Replies
Aug 18, 2009
I've built a random image generator that places 6 different coloured movie clips randomly on the stage and at any quantity that I specify. So I can have say 100 black, 30 red, 50 blue clips scattered about the screen...lovely. My only problem is that the code goes through and does one colour clip at a time so it places the 100 black first on lower levels that the 30 red, which are on lower levels than the blue and so on. This creates the problem that the last colour always dominates as it's on the top most levels. Is there a simple way to randomise the levels as the movie clips are copied? Here's the code
[cODE].....
View 6 Replies
Mar 28, 2009
Here is my dilema. I need to know how to find what level a specific movie within a movie on the main timeline is on.
I am confused because I am not even using external swf's so there should be no levels
I have tried finding the level using
_root.moviename
_level0.moviename
but when i try to assign this to an array variable it outputs as undefined.I have been able to put some other movies in arrays using _level0.moviename
but these movies are nested inside a main movie that is found on the main timeline.
View 2 Replies
Jul 29, 2009
I wanted to know if there's any command that let's you bring in front target Movie clip or Move it at the end...
Also Is there any command that pauses the proccess of the script and another that let's you continue?
View 3 Replies
Jan 10, 2003
how do I load an external .swf files in order for them always to load on top of the one loaded previously. I've tried to put all of them in the same level but the transition is abrubt. I want the transition to be smooth and each .swf file to load on top most level.
View 3 Replies
Apr 21, 2008
This may be a simple question, but I'm relatively new to the actionscript side of Flash.I have buttons that each load a different movie clip into, let's say, Level One. I'd to know how to write the AS so that if a specific movie is already loaded into that level, it won't load again when the button is pressed.
View 2 Replies
Mar 2, 2002
I just start to give the firsts steps in Flash5 ActionScript, then I would like a pacient help, because I can't to do this.I have an intro (Instance Name: logo) and another movieclip (InstanceName: back).The intro starts(logotipo), on the middle they calls the other movie clip(back in tell target "go"). This movie (back) that would to be the background of the all scene and of the "logo" too.First problem. I want to invert the levels of the movieclips because I want the mclip(logo) always on stage and the "back" on _level0.That can be possible?! How??On the end of the MovieClip(back) I' ve got the action:loadMovie("menu.swf", _level20).The "menu.swf" is a menu bar with the buttons. When I press a button is to change the action of the movieclipe(back) on the _level0.
View 2 Replies
Apr 19, 2004
I have a button that is a few levels down in movie clips. When It is pressed, it is supposed to load diamonds.swf. It does this, but not on the first press. On the first press the _root time line goes to and plays "fade," but doesn't execute the rest of the script.
[Code]...
View 2 Replies
May 9, 2004
i have game im doing, and i want it to jump to level 2 upon completing the first level, but the problem is, the level 2 is a seperate swf, i've tried to use
Code:
on (release) {
loadMovie("level2.swf",2)
}
View 3 Replies
Jun 15, 2009
im making a sort of a game and depending on what u choose u may load 1 of 3 or 4 options of movies into a specific level for each option. Meaning: the different toy hands are allways loaded on level 3, no matter which u choose and so on. At the end i need to make a list of the choices the user did, so i need to know if "hands_blue.swf" is loaded in level 3, and if so then push."hand blue" into an array. Im trying this on the _root frame,but no matter what option i take, i allways get the same option:
Code:
list=new Array();
if (_level(3)==="hands_blue.swf") {
list.push("Selecci�n: hand blue");
[Code].....
View 11 Replies