I have a problem getting mouse events in Flash Actionscript 2.
Here is what I have so far :
var _mouseListener:Object = new Object();
_mouseListener.onMouseClick = Delegate.create(this, Mouse_Event);
Mouse.addListener(_mouseListener);
private function Mouse_Event():Void
{
trace("Mouse_Event mouse handled");
}
I have the same setup for the key handling and there it works, but not for the mouse.
Any idea ?