Easy question

How do you make buttons in CS3? I feel really stupid asking this, but all my attempts have been foiled.

Latest attempts…


submit.addEventListener(onRelease){
    trace("yay");
    }

submit.onPress = function(){
    trace("yay");
    }

submit.addEventListener(MouseEvent.MOUSE_UP, doIt, true);
function doIt() {
    trace("Learning AS3 is a Pain!");
}
//Getting warmer...


What gives…