gpt4 book ai didi

闪光灯, ActionScript 3 : get all movieclips that are containing in a movieclip

转载 作者:行者123 更新时间:2023-12-04 00:21:55 29 4
gpt4 key购买 nike

只是说我有一个包含电影剪辑 B1、B2、B3、B4、B5 的电影剪辑 A

我在 A 中编写代码以接收 a 包含的所有影片剪辑,并喜欢在那里打印名称。

我试过了,没有成功:

for each (a:MovieClip in this)
trace(a.name);

有谁知道如何让它工作。

** 请注意,跟踪名称实际上是一个示例,我想对对象本身做一些非常不同的事情,例如更改那里的可见性等 **

谢谢,马蒂

最佳答案

我不确定我是否完全理解你想要做什么,但你可以做这样的事情来从父 movielcip 中提取它们的实例名称:

for(var i:int = 0; i < target_mc.numChildren; i++) {
trace (target_mc.getChildAt(i).name);
}

您还可以提取更多信息,例如对象的类型,并使用更详细的信息:

for(var i:int = 0; i < target_mc.numChildren; i++) {
trace ('\t|\t ' +i+'.\t name:' + target_mc.getChildAt(i).name + '\t type:' + typeof
(target_mc.getChildAt(i))+ '\t' + target_mc.getChildAt(i));
}

关于闪光灯, ActionScript 3 : get all movieclips that are containing in a movieclip,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3124848/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com