如何在Flash AS3中单击时从舞台中删除特定符号?

时间:2012-11-24 04:30:30

标签: actionscript-3 flash adobe

我在随机的x和y上添加了一些movieclip(一个苹果的简单图像)的实例。现在我试图点击每一个来删除它们。

这就是我所拥有的:

public function Apples() {

        for(var count:int=1; count<=10; count++){
            var apple = new Apple();
            apple.x = Math.random() * stage.stageWidth;
            apple.y = Math.random() * stage.stageHeight;    
            apple.name = count;
            stage.addChild(apple);
            }

stage.addEventListener(MouseEvent.CLICK, onClick);



        function onClick(e:MouseEvent):void{
            stage.removeChild(e.target);
            }
}

如果我尝试编译,我会收到以下错误:

1118: Implicit coercion of a value with static type Object to a possibly unrelated  type flash.display:DisplayObject.

我也尝试用e.target.name代替e.target。在这种情况下程序运行,但是一旦我点击苹果,我在输出日志中出现以下错误:

TypeError: Error #1034: Type Coercion failed: cannot convert "9" to flash.display.DisplayObject.
at MethodInfo-4()

那么有什么方法可以删除我点击的特定对象吗?

1 个答案:

答案 0 :(得分:0)

在onClick事件处理程序中尝试类似:

var displayObject:DisplayObject = (DisplayObject) (e.target);
displayObject.parent.removeChild(displayObject);

您可能还希望确保使用弱引用将事件处理程序添加到显示对象中,如果要在单击时完全删除/删除它。