Hey there. I'm using Flash 8. And I'm trying to adjust two sounds files using action script. First I set a sound file to 100, then I tried to set another file to 25 but when that happens, it also sets the first sound file to 25.
How do I adjust the second sound file so that the first one doesn't get changed as well.
By the way, here's the action script I was using for both sound files:
Sound File 1
background = new Sound();
background.attachSound("Kingdom Hearts Theme");
background.setVolume(100);
background.start(0,1);
Sound File 2
blast = new Sound();
blast.attachSound("Blaster");
blast.setVolume(50);
blast.start(0,1);