I’m guessing you are creating each of these sounds then as
sound1 = new Sound();
sound2 = new Sound();
sound3 = new Sound();
Then assigning sounds to them by using the loadSound method?
If so… it won’t work… The only way you can give each sound a distinctive volume is if they are in their own Movieclips as well… Try this out for size… Make the sound1, sound2, sound3 as movieclips… Then…
sound1.clip = new Sound();
sound2.clip = new Sound();
sound3.clip = new Sound();
Then set the volumes to the clips inside of those movieclips… You should have better success that way