Clicks falling through movieclips?

I have this movie where there are dynamic buttons generated. When you click on one, a window(movieclip) slides in over them. All is well and good. However, the window covering the buttons does not stop you from being able to click through it and onto the buttons below. Is these anyway to tell the window to disallow this, or am I going to have to loop through the buttons and disable them when the window is open?

The easiest way I know of to do it is to set a null click handler for the movie and turn off the hand cursor:

windowMovie.onRelease = function(){
//nothing happens here
}
windowMovie.useHandCursor = false;

That’s off the top of my head but I think that should do it.

I was thinking that. But I had a good reason not to.

But I forgot what it was, so I’m doing it anyways. Works like a charm. Thanks!

No problem, glad it worked for you.