in my AS3 Code I have added this simple EventListener:
addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler);
there are no errors or anything else, but when I trace something in my mouseMoveHandler it doesn't export something to my console
protected function mouseMoveHandler(event:MouseEvent):void
{
trace("mouseMoved")
}
First I thought this problem shouldn't be so difficult, and I suspect that this has something to do with the stage (addEventListener isn't at the top of it). When I googled it I found something about bubbling, but this just works with dispatch Event or? Thank you in advance for your help!