-
movie level problem
I am having the following problem:
If I use the load movie option then all the button actions on the levels underneath remain active. Therefore if I move the mouse about over the newly loaded movie the mouse will pick up all these supossedly hidden links. How can I stop this without unloading the other levels.
-
If you can't change the layout and there're some buttons underneath the loaded movie,you have to deactivate those buttons:
button1.enabled = false;
button2.enabled = false;
...
Later, you may activate them again:
button1.enabled = true;
;)