When I listen to mouse click event on the stage, it seems it's not always responding to my mouse click event. what I have is:
stage.addEventListener(MouseEvent.CLICK, Test);
function Test(event:MouseEvent):void
{
trace("test");
}
I usually have to click a few times randomly on the stage to get the trace statement. I thought when I add this event listener to the stage, it should respond to any mouse click within the swf area, no? Any ideas?
Thanks.