如何获取影片剪辑(在另一个影片剪辑内)但相对于 _root 的 X,Y 坐标?

发布于 2024-10-19 01:20:30 字数 621 浏览 1 评论 0原文

我在另一个影片剪辑中有一个影片剪辑...

//create on the stage an empty movieclip... 
var mc_container:MovieClip = _root.createEmptyMovieClip("container_name", _root.getNextHighestDepth());

//new position on the stage...
mc_container._x = 200;
mc_container._y = 200;

//create a movieclip inside the main movieclip...
var mc_inside:MovieClip = mc_container.attachMovie("mc_from_library", "mc_name", mc_container.getNextHighestDepth(), {_x:0, _y:0, _alpha:100});

我可以获取相对于容器影片剪辑的 mc_inside._x 和 mc_inside._y 属性,但是如何获取 mc_inside._xmc_inside._y 相对于 _root (舞台)?

I have a movieclip inside another movieclip...

//create on the stage an empty movieclip... 
var mc_container:MovieClip = _root.createEmptyMovieClip("container_name", _root.getNextHighestDepth());

//new position on the stage...
mc_container._x = 200;
mc_container._y = 200;

//create a movieclip inside the main movieclip...
var mc_inside:MovieClip = mc_container.attachMovie("mc_from_library", "mc_name", mc_container.getNextHighestDepth(), {_x:0, _y:0, _alpha:100});

I can get mc_inside._x and mc_inside._y properties relative to the container movieclip, but how can I get the mc_inside._x and mc_inside._y relative to the _root (the stage)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

累赘 2024-10-26 01:20:30

使用 localToGlobal:

var point:Object = {x:myClip.inner_mc._x, y:myClip.inner_mc._y};
myClip.inner_mc.localToGlobal(point);
trace(point.x)
trace(point.y)

http://help.adobe.com/en_US/ as2/reference/flashlite/WS5b3ccc516d4fbf351e63e3d118ccf9c47f-7d06.html

Use localToGlobal:

var point:Object = {x:myClip.inner_mc._x, y:myClip.inner_mc._y};
myClip.inner_mc.localToGlobal(point);
trace(point.x)
trace(point.y)

http://help.adobe.com/en_US/as2/reference/flashlite/WS5b3ccc516d4fbf351e63e3d118ccf9c47f-7d06.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文