Packagecom.greensock.core
Classpublic class PropTween

Stores information about an individual property tween. There is no reason to use this class directly - TweenLite, TweenMax, and some plugins use it internally.

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.



Public Properties
 PropertyDefined by
  change : Number
Amount to change (basically, the difference between the starting value and ending value)
PropTween
  isPlugin : Boolean
If the target of the PropTween is a TweenPlugin, isPlugin should be true.
PropTween
  name : String
Alias to associate with the PropTween which is typically the same as the property, but can be different, particularly for plugins.
PropTween
  nextNode : PropTween
Next PropTween in the linked list
PropTween
  prevNode : PropTween
Previous PropTween in the linked list
PropTween
  priority : int
Priority in the rendering queue.
PropTween
  property : String
Name of the property that is being tweened
PropTween
  start : Number
Starting value
PropTween
  target : Object
Target object
PropTween
Public Methods
 MethodDefined by
  
PropTween(target:Object, property:String, start:Number, change:Number, name:String, isPlugin:Boolean, nextNode:PropTween = null, priority:int = 0)
Constructor
PropTween
Property detail
changeproperty
public var change:Number

Amount to change (basically, the difference between the starting value and ending value)

isPluginproperty 
public var isPlugin:Boolean

If the target of the PropTween is a TweenPlugin, isPlugin should be true.

nameproperty 
public var name:String

Alias to associate with the PropTween which is typically the same as the property, but can be different, particularly for plugins.

nextNodeproperty 
public var nextNode:PropTween

Next PropTween in the linked list

prevNodeproperty 
public var prevNode:PropTween

Previous PropTween in the linked list

priorityproperty 
public var priority:int

Priority in the rendering queue. The lower the value the later it will be tweened. Typically all PropTweens get a priority of 0, but some plugins must be rendered later (or earlier)

propertyproperty 
public var property:String

Name of the property that is being tweened

startproperty 
public var start:Number

Starting value

targetproperty 
public var target:Object

Target object

Constructor detail
PropTween()constructor
public function PropTween(target:Object, property:String, start:Number, change:Number, name:String, isPlugin:Boolean, nextNode:PropTween = null, priority:int = 0)

Constructor

Parameters
target:Object — Target object
 
property:String — Name of the property that is being tweened
 
start:Number — Starting value
 
change:Number — Amount to change (basically, the difference between the starting value and ending value)
 
name:String — Alias to associate with the PropTween which is typically the same as the property, but can be different, particularly for plugins.
 
isPlugin:Boolean — If the target of the PropTween is a TweenPlugin, isPlugin should be true.
 
nextNode:PropTween (default = null) — Next PropTween in the linked list
 
priority:int (default = 0) — Priority in the rendering queue. The lower the value the later it will be tweened. Typically all PropTweens get a priority of 0, but some plugins must be rendered later (or earlier)