如何在actionscript 3中按时间缩放矩形?

时间:2013-11-15 03:43:31

标签: actionscript-3 flash air adobe

function timerHandle (e:TimerEvent)
{
    //loader.length = loader.length + 10

    txt_time.text = time;
    time--;
}

Loader是一个矩形影片剪辑。作为进度条我需要随着时间延长它。 请帮助。

1 个答案:

答案 0 :(得分:0)

您可以使用TweenLite进行代码动画,处理它更容易,因此在TweenLite代码的情况下应该是:

//rectangle_mc is the rectangle movieclip or sprite
//1 is animation time in seconds
TweenLite.to(rectangle_mc, 1, {scaleX:2, scaleY:2});

你可以在这里找到图书馆: http://www.greensock.com/tweenlite/