I wonder if anyone else has had a similiar problem,
I have declared some sound objects as follows (at _root level)

loop1 = new Sound();
loop1.attachSound("l1");
loop1.start(0,999);

loop2 = new Sound();
loop2.attachSound("l2");
loop2.start(0,999);

loop3 = new Sound();
loop3.attachSound("l3");
loop3.start(0,999);

loop4 = new Sound();
loop4.attachSound("l4");
loop4.start(0,999);

loop5 = new Sound();
loop5.attachSound("l5");
loop5.start(0,999);

I have also created a slider that is MEANT to alter the volume of individual sound objects, but what is happening is that each slider just effects the VOLUME of ALL the sound objects. I am using sound.setVolume(n); where sound is the name of a sound object and n is a number from 0 - 100. has anyone else had this problem?

cheers
fink