Question
Stage onClick problem
stage.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown)
I tried use this to close a drop down menu whenver user click anywhere besides the menu button.
But it seems to me the 'stage' area pretty much covers only area that has nothing on it, example: the little 'padding' area outside the main movie, that's practically useless I need the user be able to click on ANYWHERE except the button and the menu area, and then trigger function to close the menu.
I google around but can't find anything useful, it seem to me in AS2 there is onreleaseoutside event? Why wouldn't they have same thing on AS3? and what's the best solution for this? I think on Javascript this is pretty easy to accomplish?
Thank you.
