I am making this site that reaquires me to unload a movie when i press the button but after i need another movie to load. How do I do this. These are the two movies:
unloadMovie:
Photo_Holder
loadMovie
Thumbs_Holder
Printable View
I am making this site that reaquires me to unload a movie when i press the button but after i need another movie to load. How do I do this. These are the two movies:
unloadMovie:
Photo_Holder
loadMovie
Thumbs_Holder
hi,
Something like:
?PHP Code:my_btn.onRelease = function()
{
Photo_Holder.unloadMovie();
Thumbs_Holder.loadMovie("externalMovie.swf");
}
Supposing that the movie you want to unload has been loaded inside a movie clip called Photo_Holder and the movie want to load will be loaded inside a movie clip called Thumbs_Holder and is called externalMovie.swf.
another detail. each clip calls in an external swf.
For example:
Thumbs_Holder has this code
this.createEmptyMovieClip("image", this.getNextHighestDepth());
image.loadMovie("video galerie.swf");
and Photo_Holder has this code
this.createEmptyMovieClip("image", this.getNextHighestDepth());
image.loadMovie("photo galerie.swf");
image._x = 232.9;
image._y = 85.3;
Will the above code you provided still work?
Hi,
Yes. As long as the code works in the external swf files, it will still work when these are loaded inside another movie.
ok, I have tried this code but it did not work.
P.S. I am using as2 not as3. oh another question, will it be easier if i just load it from the library, and how do I do this?
If i give you a link to the file, will you see if you can fix it?