Flash 中关于声音音量的设置

今天有人问我音量设置的问题,虽然做过很多次这种例子,但要白写却记不起来,做个笔记。

音量设置://bgm为库中声音链接名。

var mymusic:Sound=new bgm();
var channel:SoundChannel;
var mySoundTransform:SoundTransform = new SoundTransform(1, 0);
channel = mymusic.play(0,99);
channel.soundTransform = mySoundTransform;
原文地址:https://www.cnblogs.com/wqing/p/2345296.html