I've need to lower the volume of specific layers in flash. I've done some research but can only find ways to lower the volume of the entire video. How would I apply that to certain layers?
var cherry:Sound = new Cherry();
var cherryCHNL:SoundChannel = new SoundChannel();
cherryCHNL = cherrySND.play(0,1000);
var cherryVolume:SoundTransform = cherryCHNL.soundTransform;
wakaVolume.volume = .5;
cherryCHNL.soundTransform = cherryVolume;
Cherry is any sound file in the library with class linkage.
Volume can be any number between 0-1.