Help With Controlling All Sounds Via Slidebar

Hey All,

I’ve been through this tutorial:

http://www.kirupa.com/developer/mx/volume_slider.htm

… but I’d like to be able to control all audio with this slidebar. I have various streaming sounds through a movie, along with background music and one specific voiceover that is loaded via:

m = “track”;
createEmptyMovieClip( m, 1 );
s = new Sound( eval(m) );
s.attachSound( “music_whyBlue” );
s.start( 0, 1 ); // offset: 0, loops: 1
s.setVolume(20);

Does anyone know how I would go about doing this?

Any help would be greatly appreciated.

Thanks.