ActionScript 2.0 Language Reference |
|
|
|
| ActionScript classes > Matrix (flash.geom.Matrix) > ty (Matrix.ty property) | |||
public ty : Number
The distance by which to translate each point along the y axis. This represents the value in the second row and third column of the Matrix object.
Availability: ActionScript 1.0; Flash Player 8
The following example creates the Matrix object myMatrix and sets its ty value.
import flash.geom.Matrix; var myMatrix:Matrix = new Matrix(); trace(myMatrix.ty); // 0 myMatrix.ty = 50; trace(myMatrix.ty); // 50
|
|
|
|