AS3:如何找到加载到 movieclip.movieclip 中的外部 swf 的动画片段名称?

AS3: How will I find movieclips name of external swf which is loaded inside a movieclip.movieclip?

我在一个动画片段中加载了一个 swf,该动画片段位于另一个动画片段中。

frame.pageLoader.addChild(intoMC)

代码如下:

 frame.visible = true;

var bookImagePath: String = "file://" + File.userDirectory.nativePath.toString() + "/Books/" + someFoldername + "/Home.swf";
trace(bookImagePath);



var intoMC: Loader = new Loader;

intoMC.load(new URLRequest(bookImagePath));

frame.pageLoader.addChild(intoMC)

现在,这个 Home.swf 有一些随机名称的电影片段(例如:triger、boat、rain),我想将其制作为按钮。

这里需要帮助...

我试过这样的东西。 这奏效了。

var someMC: MovieClip

var intoMC: Loader = new Loader;

intoMC.contentLoaderInfo.addEventListener(Event.COMPLETE, PageLoad);

intoMC.load(new URLRequest(bookImagePath));


function PageLoad(e: Event): void {

    someMC = e.target.content as MovieClip;;

    displayFrame.pageLoader.addChild(intoMC)
}

还有其他方法吗?