ActionScript 3.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我非常确定您可以使用免费的 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.