ActionScript 3.0 创建彩色动画

发布于 2024-12-08 20:14:48 字数 457 浏览 0 评论 0原文

有没有一种简单的方法可以在 Flash 中使用动作脚本来为对象的颜色设置动画? 我在Flex中找到了一个简单的方法,它使用spark.effects.AnimateColor类。 我试图找到类似于Flash的东西,有没有一种方法或我可以使用的库, 或者我可以以某种方式使用 Flex 库吗? 这是我找到的代码:

import spark.effects.AnimateColor;

var animation:AnimateColor = new AnimateColor(this);
animation.duration = 400; // milliseconds
animation.colorFrom = 0xFFCC00;
animation.colorTo = 0xaaff00;
animation.colorPropertyName = "color";

animation.stop();
animation.play();

Is there a simple way to animate the color of an object using actionscript in Flash?
I found a simple way in Flex,it uses the spark.effects.AnimateColor class.
I try to find something similar to Flash,is there a way or a library that i can use,
or can i somehow use the Flex libraries?
Here is the code that i found:

import spark.effects.AnimateColor;

var animation:AnimateColor = new AnimateColor(this);
animation.duration = 400; // milliseconds
animation.colorFrom = 0xFFCC00;
animation.colorTo = 0xaaff00;
animation.colorPropertyName = "color";

animation.stop();
animation.play();

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

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

发布评论

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

评论(1

我不咬妳我踢妳 2024-12-15 20:14:48

我非常确定您可以使用免费的 GreenSock Tween 库 来完成此操作。您必须确定地查看文档。我只将它用于 X 和 Y 补间,但我认为颜色和/或 alpha 也是可能的。

I'm pretty sure you can do this using the free GreenSock Tween libraries. You'll have to look at the docs for sure. I've only used it for X and Y tweens, but I thought colors and/or alphas were possible too.

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