;

PDA

Click to See Complete Forum and Search --> : movie level problem


imladris
03-16-2005, 04:42 AM
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.

necromanthus
03-16-2005, 04:52 AM
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;



;)