Hi
I have 2 problems :
I have created an .fla containing an empty movie clip and a button. pressing the button loads an external .swf inside the empty moviclip. The button is a simple button (came with Mx 2004 software).
**instance name of empty moviclip ** = “empty”
AS of button :
on (release) {
loadMovie(“externalmovie.swf”, “empty”);
}
The above works great. The problem started once I tested another button I added. It is a movieclip containing a button.
First of all, for some reason the button doesn’t work while testing the movie (movieclip animation begins but the button doesn’t respond). Using the same movieclip containing the button in another project worked fine. Testing the movieclip scene also works fine. What’s the problem ?
The other big problem is that while testing the button in the other project of mine (where the MC containing the button worked) I gave the button inside the MC the same AS code as above but it didn’t work. What did I do wrong ?
Here is the file.
PLEASE HELP !