I have a series of buttons which all load diferent .swf into my main movie when pressed using the code
on (release){
loadMovieNum("****.swf", 1);
}
This works, but if I load an .swf by clicking a button, when I click the button again it reloads the .swf again.
Is there a way to check if the .swf is already loaded or being loaded so when pressed again the button does not reload it?
on (release){
loadMovieNum("****.swf", 1);
}
This works, but if I load an .swf by clicking a button, when I click the button again it reloads the .swf again.
Is there a way to check if the .swf is already loaded or being loaded so when pressed again the button does not reload it?