Packagecom.greensock.plugins
Classpublic class EndVectorPlugin
InheritanceEndVectorPlugin Inheritance TweenPlugin Inheritance Object

[AS3 only] Tweens numbers in a Vector.<Number>. 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.<Number> = new Vector.<Number>();
    v[0] = 0;
    v[1] = 1;
    v[2] = 2;
var end:Vector.<Number> = new Vector.<Number>();
    end[0] = 100;
    end[1] = 250;
    end[2] = 500;
TweenLite.to(v, 3, {endVector:end, onUpdate:report}); 
function report():void {
    trace(v);
}

Copyright 2008-2013, GreenSock. All rights reserved. This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for Club GreenSock members, the software agreement that was issued with the membership.



Public Methods
 MethodDefined By
  
_roundProps(lookup:Object, value:Boolean = true):void
[override]
EndVectorPlugin
 Inherited
activate(plugins:Array):Boolean
[static] Activates one or more plugins so that TweenLite and TweenMax recognize the associated special properties.
TweenPlugin
Method Detail
_roundProps()method
override public function _roundProps(lookup:Object, value:Boolean = true):void

Parameters

lookup:Object
 
value:Boolean (default = true)