我正在尝试从时间轴获取动态影片剪辑。
我有一个长度未知的时间线,其中一个关键帧(假设为 88)上有一个实例名称为“blah”的影片剪辑。
无论我做什么,我都无法获得对上述电影剪辑的引用。
这是我尝试过的:
trace(blah); // null
trace(this.blah); // null
trace(getChildByName("blah")); // null
if(currentFrame == 88)
trace(getChildByName("blah")); // null
for(var i:int=0; i<numChildren; ++i)
trace(getChildAt(i));
/* Returns:
* [object MovieClip]
* [object Shape]
* null
* [object TextField]
*/
// Assuming the first movie clip is the correct one
trace(getChildAt(0).name); // instance?? where ?? are random digits, I'm expecting "blah"
有人可以阐明如何通过代码导入时间线生成的对象吗?