MovieClip.prototype.mover = function(longitud, vel, xboton) {
this.onEnterFrame = function() {
with (this) {
_y = _y+(xboton-_y)/vel;
if (Math.ceil(_width) == longiutd && Math.ceil(_y) == xboton) {
delete onEnterFrame;
}
}
};
};
stop();
Algo de _parent nO???