如何删除/卸载 ActionScript 3 - flash 中的按钮?
我有一个按钮,我正在尝试卸载它,但我不知道如何卸载。
我按如下方式添加孩子: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能会从代码中丢失该按钮的实例,很可能是因为该按钮是在函数中临时定义的。
2 个选项创建按钮的全局实例。
或者将该按钮的实例添加到列表中
,然后当您想要从舞台上删除按钮时,只需执行以下操作:
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
then when ever you want to remove the buttons from stage just do the following:
奇怪的是,这不起作用,但如果它只是一个按钮,你可以这样做。
按钮.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);