如何在ActionScript3中删除Child?
我每次都添加孩子,一旦添加孩子,当我添加下一个孩子时,上一个孩子就会被删除,这是我的目标。我试图删除孩子,但我的屏幕上没有显示任何内容。 这是我的编码,
var tf:TextField = new TextField();
tf.text = chatData.message;<---------here i add the text dynamically
listChat.addChild(tf); // <----------------------------------here i added the child
var t:Timer = new Timer(150);
t.addEventListener(
TimerEvent.TIMER,
function(ev:TimerEvent): void
{
tf.text = tf.text.substr(1) + tf.text.charAt(0);
}
);
t.start();
listChat.removeChild(tf);// <----------------------------------here i remove the child
}
如何删除孩子?任何人都可以帮助我,提前致谢!
I added the child each and Every time,once the child is added,when i add the next child the previous child is deleted this is my goal. am trying to remove the Child ,But Nothing Displayed in my screen.
here my coding
var tf:TextField = new TextField();
tf.text = chatData.message;<---------here i add the text dynamically
listChat.addChild(tf); // <----------------------------------here i added the child
var t:Timer = new Timer(150);
t.addEventListener(
TimerEvent.TIMER,
function(ev:TimerEvent): void
{
tf.text = tf.text.substr(1) + tf.text.charAt(0);
}
);
t.start();
listChat.removeChild(tf);// <----------------------------------here i remove the child
}
how can i remove the child? Anybody help me,Thanks in Advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于我得到了答案
这是我的编码
finally i got Answer
here my Coding