Movie Clip Button Sound over states

Hey wutsup guys,

OK, I did a search through the forum and thought I found what I wanted, but in the end couldn’t get it to work, so basically all I need is to trigger a sound when the mouse cursor is over the “over” / “out” state. Since I have animations to the buttons, I already have this existing script working fine, just need that extra line of code to add sound to the certain state, but I couldn’t think of it off the top of my head:


this.button_mc.onRollOver = function(){
button_mc.gotoAndPlay("_over");
}

this.button_mc.onRollOut = function(){
button_mc.gotoAndPlay("_out");
}

this.button_mc.onRelease = function() {
button_mc.getURL(“http://www.chriscerros.com”);
}


Thanks doods.