繁体   English   中英

loadClip as2未加载swf

[英]loadClip as2 not loading 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);

我唯一能看到的是代码中的问题,就是您要加载的SWF的URL应该用双引号引起来:

my_mcl.loadClip("B.swf", container_mc);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM