Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/08/2004, 15:48
antichavez
 
Fecha de Ingreso: noviembre-2003
Ubicación: Venezuela
Mensajes: 344
Antigüedad: 20 años, 5 meses
Puntos: 0
Como hago para que este codigo funcione dentro de un movieclip???

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???