Hello everyone,
I have a file (main.fla) which loads external movieclips on it,using an empty movieclip as loader (loader_mc).Now,I want to create a navigation,with two buttons (previous / next) which will allow me to navigate through the external movieclips.
So,I have created these two buttons.For the “next” button I am using this code,to load the first external swf file (example1.swf):
on (release) {
if(this._parent.loader == Number(this._parent.loader_mc)){
loadMovieNum("example1.swf",this._parent.loader_mc);
} else {
this._parent.loader_mc.loadMovie("example1.swf");
}
}
This is a simple code,taken from the behavior.
So,everything is fine till now.The first ext.swf loads correctly.
Now,what code do I need to use,in order to be able to load the second ext.swf file (example2.swf) when the “next” button is clicked?
Thanks in advance =)