I'm builiding an audio mixer in Flash 8 (AS2) where 4 sounds are all playing at once (drums, guitar, vocal, percussion). I am having trouble with having one set of controls that would pause, rewind, and fast forward the sound objects all at once and so they are all in the same position. Is this possible? I set up an array like this:

allSounds = ['drums','bass','guitar','vocal','percussion'];

and attached this to my play button so that all sounds would play:

on (press) {
for(i=0;i<allSounds.length;i++){
this[allSounds[i]].start();
mixerstate="Playing";
}
}

could I do something like this to pause, rewind, fast forward as well? Thanks in advance for your help!!