“.parent”的动态数量
我有2个对象。在MovieClip的不同深度。我想知道对象 A 的父对象是否与对象 B 的父对象相同。我想动态地将“.parent”添加到对象 A/B,直到它们达到相同的级别(具有相同的父对象)。我怎样才能做到这一点?
我的想法是有类似的东西
objectA = objectA + ".parent"
并让它循环直到达到目标。但这不是添加更多“.parent”层的正确方法。有人知道应该如何编码吗?
I have 2 object. In different depths of MovieClip. I would like to know if object A parent is same with object B parent. I wanted to dynamically add '.parent' to object A/B till it both reaches the same level (having the same parent object). How can I do that?
My idea was to have something like
objectA = objectA + ".parent"
and make it loop till it reaches the target. But this is not the correct way to add in more layers of '.parent'. Anyone know how it should be coded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用包含方法
对于巨大的显示列表可能会很慢。
更新:获取共同的父级(如果有)。如果两者都在舞台上,这将返回一个
Stage
对象。You can use contains method
Might be slow for huge display lists.
Update: get the common parent, if any. This will return a
Stage
object if both are on stage.