你能帮我解决这个问题吗:我已经创建了形状并使用相同的侦听器函数将鼠标单击侦听器放在它们上面,但该函数没有被调用。
shape:Shape = new Shape
shape.graphics.beginFill(color);
shape.graphics.drawRoundRect(rx, ry, cWidth, cHeigth, ellipseHeight, ellipseHeight);
shape.graphics.endFill();
shape.addEventListener(MouseEvent.CLICK, onMouseClick);
areaSprite.addChild(shape);
private function onMouseClick(ev:MouseEvent):void {
// some code
..........
}
我在这里做错了什么?你可以帮帮我吗 ?