0

我正在尝试创建一个组合框,该组合框使用 Flash CS5 使用 ActionScript 3.0 将外部 SWF 加载和卸载到舞台上。

目前组合框中有 2 个列表项:主页和关于。从 ComboBox 中选择 Home 或 About 选项后,它会在选中时同时显示 Home 和 About SWF。

我只希望仅在选择时显示 1 个 SWF,而不是全部显示。

menuList.addItem({label:"Choose"});
menuList.addItem({label:"Home",path:"home_load.swf"});
menuList.addItem({label:"About",path:"about.swf"});

menuList.addEventListener(Event.CHANGE, Home);
menuList.addEventListener(Event.CHANGE, About);

var loader:Loader = new Loader();
loader.unloadAndStop();


function Home(e:Event):void
{
    if (e.currentTarget.selectedItem.path)
    {
        var loader:Loader = new Loader();
        //loader.unloadAndStop();
        loader.load(new URLRequest("home_load.swf"));

        addChild(loader);
        //loader.unloadAndStop();
        loader.x = 0;
        loader.y = 190;
    }
}

function About(e:Event):void
{
    if (e.currentTarget.selectedItem.path)
    {
        //loader.unloadAndStop();
        var loader:Loader = new Loader();
        loader.load(new URLRequest("about.swf"));

        addChild(loader);
        //loader.unloadAndStop();
        loader.x = 0;
        loader.y = 190;
    }
}
4

1 回答 1

0

您可能必须在 swf 文件完成加载后执行 addChild。

//These listeners detect when the file has finished loading, and if the
//correct file is loaded.
swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, finishLoading);
swfLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorHandler);

//The load method then loads the SWF file into the loader object.
swfLoader.load(my_url);

//This function adds the external SWF to the stage.
function finishLoading(loadEvent:Event) {
addChild(loadEvent.currentTarget.content);
}

//This function displays a message if the file is not found.
function errorHandler(errorEvent:Event):void {
trace("file missing");
}
于 2013-02-01T03:40:56.633 回答