AS3 删除数组中的 MovieClip

发布于 2024-09-27 14:51:28 字数 106 浏览 3 评论 0原文

如果我将对象的引用存储在数组中并且它们存在于不同的位置,即它们不是同一父级的所有子级,那么有人知道如何使用 AS3 从舞台上删除子级吗?

SomeArray.push(this);

Anybody any ideas on how to remove children from stage using AS3 if I store the reference to the objects in an array and they exist in different locations i.e they are not all children of the same parent?

SomeArray.push(this);

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

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

发布评论

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

评论(2

2024-10-04 14:51:28
for each(var mc:MovieClip in SomeArray){
    mc.parent.removeChild(mc);
}
for each(var mc:MovieClip in SomeArray){
    mc.parent.removeChild(mc);
}
彼岸花似海 2024-10-04 14:51:28

考虑一下:

  • 迭代每个剪辑和片段。
    他们的孩子。
  • 匹配参考名称/ID(我希望
    它是独一无二的)。
  • 使用removeChild删除显示
    对象(精灵、MC等)。
  • 当您不断获得匹配项时,请不断从数组中弹出最后一个引用。

Consider this :

  • Iterate over each of the clips &
    their children.
  • Match the reference name/ID (I hope
    its a unique one).
  • Use removeChild to remove the display
    object(Sprite,MC,etc).
  • keep popping off the last reference off the array as you keep getting matches.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文