onEnterFrame not working

var mcHolder:MovieClip = _root.mcHolder;

mcHolder.onEnterFrame = function() {
trace"hello");
};

this only prints out “hello” one time.
Why does it not repeat every frame?