onEnterFrame not working, but onRelease works?

why?
//This doesn’t work
my_mc.onEnterFrame = function() {
this.alphaTo(1,1,“easeoutSine”);
}

//This doeswork
my_mc.onRelease = function() {
this.alphaTo(1,1,“easeoutSine”);
}

…any i deas please? Sorry if ths is a basic question.