y (Point.y property)

public y : Number

The vertical coordinate of the point. The default value is 0.

Availability: ActionScript 1.0; Flash Player 8

Example

The following example creates a Point object myPoint and sets the y coordinate value.

import flash.geom.Point;
var myPoint:Point = new Point();
trace(myPoint.y); // 0
myPoint.y = 5;
trace(myPoint.y); // 5


Flash CS3