几秒后闪现removeChild

发布于 2024-11-26 10:32:15 字数 111 浏览 2 评论 0原文

我是 Flash 新手,我不知道是否可能,但我正在使用 addChild 将随机影片剪辑添加到舞台上,我需要在 10 秒后删除它们...我如何使用 removeChild 来做到这一点?

问候

I'm new on Flash, i don't know if it possible, but i'm adding a random movieclip to the stage, using addChild, and i need to remove them after 10 seconds...how can i do this using removeChild?

regards

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

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

发布评论

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

评论(2

空城缀染半城烟沙 2024-12-03 10:32:15

或者您可以使用 flash 库中的默认函数

setTimeOut()

更多信息

最后它看起来像这样:

setTimeOut ( removeClip, 2000, clip );

function removeClip ( clip : DisplayObject ) : void
{
    removeChild ( clip );
}        

Or you can use the default function from flash library

setTimeOut()

More Info.

And at the end it would be looking like this:

setTimeOut ( removeClip, 2000, clip );

function removeClip ( clip : DisplayObject ) : void
{
    removeChild ( clip );
}        
暗地喜欢 2024-12-03 10:32:15

使用 Timer 类。另外 TweenLite 库 有一个很好的函数,名为 TweenLite.delayedCall(secondsDelay, functionToCall)

Use the Timer class. Also the TweenLite library has a nice function called TweenLite.delayedCall(secondsDelay, functionToCall)

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