The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.38 / 5.00 36,385 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.07 / 5.00 13,902 ViewsHi, I just want some help with this because its been driving me crazy for the past couple of days.
In my animation, I have some background music and I have lines of character voices going at the same time. But because the volume on the background music is too loud and you can't hear the voices, I used some coding like this to control the volume of the background music:
_root.myLoop = new Sound(stage);
_root.myLoop.attachSound("overworld");
_root.myLoopVolume=70;
_root.myLoop.setVolume(myLoopVolume);
It lowers the volume of the background music but it also lowers the volume of every other sound file too. Is there any way to control the volume of an individual sound file only? Thanks guys.