removeChild使用不正确?

发布于 2024-12-10 15:55:58 字数 694 浏览 5 评论 0原文

我只是想在双击时从舞台上删除影片剪辑

package  {
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    import fl.motion.MotionEvent;

    public class Main extends MovieClip{

        var thingeh:Things;

        public function Main() {
            thingeh = new Things;
            stage.addEventListener(MouseEvent.CLICK, onClick);
            stage.addEventListener(MouseEvent.DOUBLE_CLICK, onDouble);

        }

        public function onClick(event:MouseEvent)
        {
            addChild(thingeh);

        }
        public function onDouble(event:MouseEvent)
        {
            if(thingeh)
            removeChild(thingeh);

        }
    }

}

I'm just trying to remove a movie clip from the stage upon double clicking

package  {
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    import fl.motion.MotionEvent;

    public class Main extends MovieClip{

        var thingeh:Things;

        public function Main() {
            thingeh = new Things;
            stage.addEventListener(MouseEvent.CLICK, onClick);
            stage.addEventListener(MouseEvent.DOUBLE_CLICK, onDouble);

        }

        public function onClick(event:MouseEvent)
        {
            addChild(thingeh);

        }
        public function onDouble(event:MouseEvent)
        {
            if(thingeh)
            removeChild(thingeh);

        }
    }

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必了 2024-12-17 15:55:58
public function onDouble(event:MouseEvent)
{
    if( thingeh && contains(thingeh) )
    {
        removeChild(thingeh);
    }
}

另外,您可能希望在构造函数中使用 doubleClickEnabled = true

请注意,MouseEvent.CLICKMouseEvent.DOUBLE_CLICK 事件一起被触发两次。

public function onDouble(event:MouseEvent)
{
    if( thingeh && contains(thingeh) )
    {
        removeChild(thingeh);
    }
}

Also, You may want doubleClickEnabled = true within your constructor.

Do note, MouseEvent.CLICK gets fired TWICE along with a MouseEvent.DOUBLE_CLICK event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文