[]LayaFlash下如何对音量进行控制?

已邀请:

cuixueying

赞同来自: layabox

   layaFlash下不支持使用SoundMixer.soundTransform.volum去设置音量,但是可以通过SoundChannel.soundTransform.volume去设置
示例如下:
public function init(e:Event):void
{
var sound:Sound=new Sound();
sound.load(new URLRequest("xxx.xxx.xxx"));
var sc:SoundChannel=sound.play();
var st:SoundTransform=new SoundTransform();
st.volume=0.5;
sc.soundTransform=st;
}

要回复问题请先

商务合作
商务合作