I just have one simple question, I am making a movie and i was just wondering if i have a BG song playing the whole time how can i get it to be quieter so i can hear the sound effects with more intensity. If you have any solutions that would help a ton.
look for setVolume in ActionScript reference
Also check out this site as well. www.kennybellew.com
this is what i have, the Linkage propertie is set to “matrix”
Sound = new Sound();
Sound.attachSound(“matrix”);
SoundVolume=50;
Sound.setVolume(20);
what else do i need to give an instance name to or change in my code?
You wanna use another name than Sound, since Sound is the contructor function of the Sound class. Use mySound or something. Also, you wanna give a target to the Sound file, mySound = new Sound(this);