![]() ![]() ![]() | |
![]() | |
![]() | |
![]() |
Flash Player 5.
my_mc
.localToGlobal(
point
)
point
The name or identifier of an object created with the Object class, specifying the x and y coordinates as properties.
Nothing.
Method; converts the point
object from the movie clip's (local) coordinates to the Stage (global) coordinates.
The following example converts x and y coordinates of the point
object, from the movie clip's (local) coordinates to the Stage (global) coordinates. The local x and y coordinates are specified using the _xmouse
and _ymouse
properties to retrieve the x and y coordinates of the mouse pointer position.
onClipEvent(mouseMove) {
point = new object();
point.x = _xmouse;
point.y = _ymouse;
_root.out3 = point.x + " === " + point.y;
_root.out = _root._xmouse + " === " + _root._ymouse;
localToGlobal(point);
_root.out2 = point.x + " === " + point.y;
updateAfterEvent();
}
![]() | |
![]() | |
![]() | |
![]() ![]() ![]() |