18/08/2004, 15:48
|
| | Fecha de Ingreso: noviembre-2003 Ubicación: Venezuela
Mensajes: 344
Antigüedad: 21 años, 1 mes 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??? |