I am trying to create an event listener in a custom class. I have seen this in books but I get error "Access of undefined property on MouseDown". I have tried to abstract the issue as much as possible. The command I am using to call my class is provided below. Thanks for any insights.
package
{
import flash.display.*;;
import flash.events.*;;
public class MouseDraw extends Sprite {
public function MouseDraw() {
addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown);
}
public function OnMouseDown(event:MouseEvent):void {
trace("mouse down");
}
}
}
//code in fla
var mouseDraw:MouseDraw= new MouseDraw();
addChild(mouseDraw);