Flash Player 5。
my_mc
.localToGlobal(
point
)
point
用 Object 类创建的对象的名称或标识符,并指定 x 和 y 坐标作为属性。
无。
方法;将 point
对象从影片剪辑(本地)坐标转换为舞台(全局)坐标。
下面的示例将 point
对象的 x 和 y 坐标从影片剪辑(本地)坐标转换为舞台(全局)坐标。本地 x 和 y 坐标是用 _xmouse
和 _ymouse
属性指定的,以获取鼠标指针位置的 x 和 y 坐标。
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();
}