如何在as3中停止加载程序文件声音

时间:2014-10-21 12:37:12

标签: actionscript-3

var loader_2:Loader = new Loader();
loader_2.load(new URLRequest("Mov/pat2/P2_Manu1_sl1.swf"), LC_2);
var LC_2:LoaderContext = new LoaderContext(false,ApplicationDomain.currentDomain);
my_loader_2.addChild(loader_2);

SoundMixer.stopAll();

//如何在下次点击中停止声音。我使用了{Sound Mixer.stop All();}这段代码来停止声音。但我无法阻止以前的加载程序文件声音。

1 个答案:

答案 0 :(得分:0)

通过检查the documentation for Loader,您会发现有unload()方法。这应该卸载.swf并因此停止声音(除非swf在某种程度上与您当前的ApplicationDomain混淆)。