作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
只是说我有一个包含电影剪辑 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/
我是一名优秀的程序员,十分优秀!