Tweens numbers in an Vector.
. Remember, Vectors require that you publish to Flash Player 10 or later.
USAGE:
import com.greensock.TweenLite;
import com.greensock.plugins.TweenPlugin;
import com.greensock.plugins.EndVectorPlugin;
TweenPlugin.activate([EndVectorPlugin]); //activation is permanent in the SWF, so this line only needs to be run once.
var v:Vector. = new Vector.();
v[0] = 0;
v[1] = 1;
v[2] = 2;
var end:Vector. = new Vector.();
end[0] = 100;
end[1] = 250;
end[2] = 500;
TweenLite.to(v, 3, {endVector:end, onUpdate:report});
function report():void {
trace(v);
}
Copyright 2010, GreenSock. All rights reserved. This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership.