ActionScript 3 没有extrenal API的简单缓和

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 没有extrenal API的简单缓和相关的知识,希望对你有一定的参考价值。

import fl.transitions.*;
import fl.transitions.easing.*;

//More info
//http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/transitions/easing/package-detail.html

stage.frameRate = 31;

var box:Sprite = new Sprite();
box.graphics.beginFill(Math.random() * 0xFFFFFF);
box.graphics.drawRect(0, 0, 100, 350);
box.graphics.endFill();
box.x = 50;
box.y = 10;
addChild(box);

var startValue:Number = box.x;
var finishValue:Number = 400;
var duration:Number = 3;
var myTween:Tween = new Tween(box, "x", Strong.easeOut, startValue, finishValue, duration, true);
myTween.looping = true;

以上是关于ActionScript 3 没有extrenal API的简单缓和的主要内容,如果未能解决你的问题,请参考以下文章

(ActionScript 3.0)我的函数没有通过按钮事件更新全局变量

如果用户没有与动画交互,Actionscript 3 执行一个动作

可以在没有 Adob​​e Flash Professional 的情况下使用 ActionScript 3?

Actionscript 3如何一次移动多个对象而没有延迟

ActionScript 3 如果鼠标没有移动,请隐藏一些内容。

ActionScript 3 从loaderURL返回域(包括协议),没有尾部斜杠