//paddle
//shows how to make a paddle follow the mouse
init();
function init(){
//turn off the mouse pointer
Mouse.hide();
} // end init
player.onEnterFrame = function(){
//player paddle follows mouse’s y value
player._y = _root._ymouse;
} // end enterFrame