;

PDA

Click to See Complete Forum and Search --> : Loadmovie


jayr_000
09-02-2002, 11:43 AM
I have got a button within a movie with in a movie and when clicked on it loadsmovie...everything fine so far but there are some buttons on level o that i dont want anyone to be able to click on them...but others on the screen clickable.....
is there anyway that the blocker i have on the loaded movie on level 1 block off the buttons.....they work even though you cant see them!!!!!!

please help bit stuck and hitting my head against things

thanks......

habra2000
09-03-2002, 03:33 AM
Try to make the buttons invisible in the same time you load the other movie.

on (release) {
setProperty ("MC", _visible, flase);
loadMovie ....
}

jayr_000
09-04-2002, 08:29 AM
That works but how can i make the buttons reapear when i unload the movie on top...

eg going back to original movie???

habra2000
09-04-2002, 08:32 AM
In the same manner .. but this time use

setProperty ("MC", _visible, true);

where MC is the button.