星期日, 8月 31, 2008

AS3:TweenMax

介紹一個Flash AS3很方便的Tween Class: TweenMAX。這是一隻Jack Doyle所撰寫的程式,是TweenLite的加強版本;可以讓你以程式碼控制的方式更快速的達到許多Flash動態的效果。

首先先到TweenMAX下載免費的Tween。

下載後,將"GS"資料夾放置在與.FLA相同的地方。

接著你就可以使用TweenMAX的功能了。程式碼範例如下:
import gs.*;
var myTween:TweenMax = new TweenMax(mc, 2, {x:500, y:200});
//then later, if you need to change the tween
//so that the "x" property tweens to 100 instead of 500...

myTween.setDestination("x", 100);
//even if the tween is in progress, the value will be updated

沒有留言: