Flex中效果动画结束后怎么办?

发布于 2024-08-26 17:49:42 字数 531 浏览 11 评论 0原文

我是 Flex 的初学者,所以必须有更优雅的方法来做到这一点。

//move effect
private var m:Move = new Move(); 

//this function creates labels with some text and starts move effect on them
public function moveText(i:int):void {
    var myLabel:Label = new Label();
    myLabel.text = "some text"; 
    m.target = myLabel;
    ... 
    m.play();               
}

moveText 方法是循环调用的,所以我猜标签不会被“垃圾收集”。

我想要做的是在播放动画结束后删除在 moveText 方法中创建的标签。

另一种方法可能是创建某种标签“池”,我将用它来移动周围的文本。我不知道如何将标签返回到“池”。

问题是效果动画结束后怎么办?

I'm a beginner in Flex so there must be more elegant way of doing this.

//move effect
private var m:Move = new Move(); 

//this function creates labels with some text and starts move effect on them
public function moveText(i:int):void {
    var myLabel:Label = new Label();
    myLabel.text = "some text"; 
    m.target = myLabel;
    ... 
    m.play();               
}

Method moveText is called in a loop so I guess that labels don't get "garbage collected".

What I want to do is to remove Labels created in moveText method after play animation ends.

Another way of doing this is maybe creating some kind of "pool" of labels which I would use to move arround text. I don't know how would I return labels in to "pool".

The question is how to do something after effect animation ends?

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

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

发布评论

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

评论(2

苍暮颜 2024-09-02 17:49:42

您可以监听 EffectEnd 事件。

请查看此处

You can listen to the EffectEnd event.

Check out here

别理我 2024-09-02 17:49:42

查看 Effect 类中的 effectEnd 事件。您可以在其中放置一个处理程序来执行垃圾收集。

Look at the effectEnd event in the Effect class. You can put a handler in there that does your garbage collection.

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