|
-
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......
-
Try to make the buttons invisible in the same time you load the other movie.
on (release) {
setProperty ("MC", _visible, flase);
loadMovie ....
}
-
That works but how can i make the buttons reapear when i unload the movie on top...
eg going back to original movie???
-
In the same manner .. but this time use
setProperty ("MC", _visible, true);
where MC is the button.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|