谁能帮我弄清楚为什么这不会加载到我的 swf 中?我没有错误。
var my_mcl:MovieClipLoader = new MovieClipLoader();//Used to load the image
button1_mc.onPress = function()
{
my_mcl.loadClip(B.swf,container_mc);//loading a movie into a container movie clip (just an empty mc on the stage)
trace("a")
};
button2_mc.onPress = function()
{
my_mcl.loadClip(B.swf,container_mc);//loading a movie into a container movie clip (just an empty mc on the stage)
trace("b")
};
var mclListener:Object = new Object();
my_mcl.addListener(mclListener);