Ive inserted an audio file into my frame:


var soundReq:URLRequest = new URLRequest("Sound_1.mp3");
var sound:Sound = new Sound();
sound.load(soundReq);
sound.addEventListener(Event.COMPLETE, onComplete);
//end of sound section

function onComplete(event:Event):void
{
sound.play();
}


I would like to know how would i mute and unmute this ....?

Im new to all this so please take it easy, any much would be much appreciated.

Regards
Enam