1

我想使用纯动作脚本 2.0 补间一个电影剪辑(轻松)。有谁知道在哪里可以找到这方面的任何资源,或者可以为我指明正确的方向?

谢谢!

4

2 回答 2

3

你必须导入

import mx.transitions.Tween;
import mx.transitions.easing.*;

然后使用命令

 new Tween(yourMovieClip, "_alpha", Regular.easeOut, 40, 100, 1, true);

可以这么说

// to tween over a period of time:
new Tween(movieclip, "property", easing-type, start-value, stop-value, #seconds, true);

// to tween over a number of frames:
new Tween(movieclip, "property", easing-type, start-value, stop-value, #frames, false);

你可以阅读补间课

于 2009-11-18T09:19:42.233 回答
2

虽然 mx.transitions.Tween 类会带你到那里,但我推荐Tweener库。正如文档所说,“它不依赖于内置类的特定属性,例如 MovieClips 或 TextFields。” 他们还有各种很酷的缓动型曲线等等。

这些示例很棒,您将能够将您的知识带到 AS3 甚至 Javascript 中。

此外,我不记得它还做了什么其他事情,但我记得大约一年前在一个项目中抛弃了 Tween 类,因为它有一些限制,或者可能是因为让 Tweens 解雇其他 Tween 很麻烦(或不可能?) .

于 2009-11-18T09:29:49.987 回答