Hello
I have a problem. I have a movie clip with buttons, one of the buttons start
s
a second movie clip over the first, but the second movie clip is transparent
(70%) so you can see the firs movie clip. Thats the effect I want to achieve
,
but the problem is that the buttons from the firs movie clip are still activ
e.
And so I have active button from the first and from the second movie clip. M
y
question is how can I make the buttons from the firs movie clip to be inacti
ve
(without removing them) when the second movie clip is on top of the first.
My code for loading the second movie clip is:
on (press) {
loadMovieNum("movies/creolex.swf",1);
}
And for closing the second is:
on (press) {
unloadMovie(this);
}
Thank You.
|