如何删除/卸载 ActionScript 3 - flash 中的按钮?

发布于 2024-10-28 22:02:31 字数 145 浏览 0 评论 0原文

我有一个按钮,我正在尝试卸载它,但我不知道如何卸载。

我按如下方式添加孩子:addChild(buttons);

我尝试通过以下方式删除它:removeChild(buttons);

但这不起作用,什么也没有发生。有什么想法吗?

i have a button and i am trying to unload it but i dont know how.

I add the child as follows : addChild(buttons);

I try to remove it by : removeChild(buttons);

but this does not work, nothing happens. Any ideas?

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

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

发布评论

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

评论(2

原谅我要高飞 2024-11-04 22:02:31

您可能会从代码中丢失该按钮的实例,很可能是因为该按钮是在函数中临时定义的。

2 个选项创建按钮的全局实例。

或者将该按钮的实例添加到列表中

var list:Array = new Array(); //define a global array

var b1:Button = new Button () //I honestly don't remember the synthax for creating a button 
list.push(b1);

,然后当您想要从舞台上删除按钮时,只需执行以下操作:

for(int i=0; i<list.length;i++){
    removeChild(list[i]);
}

you are probably losing an instance of that button from your code, most likely because the button was temporarily defined in a function.

2 options create a global instance of the button.

or the add the instance of that button into a list

var list:Array = new Array(); //define a global array

var b1:Button = new Button () //I honestly don't remember the synthax for creating a button 
list.push(b1);

then when ever you want to remove the buttons from stage just do the following:

for(int i=0; i<list.length;i++){
    removeChild(list[i]);
}
靑春怀旧 2024-11-04 22:02:31

奇怪的是,这不起作用,但如果它只是一个按钮,你可以这样做。

按钮.parent.removeChild(按钮);

Odd that that doesn't work but if it is just one button you can do it like this.

buttons.parent.removeChild(buttons);

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