Hi all. I am loading external FLV into my flash movie and am using my own buttons to control pausing and such using the newnetconnection and so forth .

I'd like to make an audio control panel as well to control volume and mute but have no idea where to start. Any help is greatly appreciated. Mayb a tutorial? How to target volume and mute, preferable a slider for the volume.

this is the working code for my rewind button.

this.buttons.rewindVideo_btn.onRelease = function () {
step2_ns.seek(0);
step2_ns.pause(true);
}

thanks again