1

因为我不想将我所有的 100 张图片加载到影片剪辑容器中,所以我决定这样做:

1)加载前5张图片并将它们添加到影片剪辑容器中:

private function onLoadingComplete(evt:Event):void
    {
        evt.target.removeEventListener(Event.COMPLETE,onLoadingComplete);

        var bitmap:Bitmap=evt.target.loader.content as Bitmap;
        bitmap.smoothing=true;
        bitmap.width=stage.stageWidth;
        bitmap.height=stage.stageHeight;

        var clip_mc:MovieClip=new MovieClip();
        clip_mc.addChild(bitmap);
        clip_holderArray.push(clip_mc);

        container_mc.addChild(clip_mc);

2)在图 4,从 4 过渡到 5,我加载其他 5,依此类推。

由于加载速度很快,只有 5 张图片,用户不会注意到加载...无论如何,有些事情不正确,我看不到图片的确切顺序,我把它们放在容器上..为什么?

4

0 回答 0