按钮在AS 3.0中打开swf

时间:2012-06-17 23:49:15

标签: actionscript-3 flash-cs5

我一直试图在几小时内找到适当的代码。但我找到的那些似乎都没有用。我真的需要帮助......我很绝望...... 我有2个swf文件。我在第一个swf文件的末尾添加了一个按钮(下一个按钮)。我想在按下此按钮时转到第二个swf文件。我知道怎么用actionscript 2.0(LoadMovie)来做...但是我在动作脚本3.0中启动了我的swf,现在......我需要在AS 3.0中编写代码。 有人可以帮我这个代码吗?我尝试了一些我从其他用户看到的代码,但我不知道我做错了什么,它们都适合我!

非常感谢!

1 个答案:

答案 0 :(得分:0)

这应该有所帮助:

    // Set the URL of the second movie
var url:String = "url_of_your_second_movie"

// Create the loader object using the specified URL
var loader:Loader=new Loader();
var request:URLRequest;
request= new URLRequest(url);   

// Set the COMPLETE event handler  
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete );  

// Start the load
loader.load( request );

// Fill the COMPLETE event handler as needed
private function onComplete(e:Event):void
{
    // Add the loaded content to the display list
    addChild(e.currentTarget.content);
    // Do whatever else is needed once the movie is completed
}