24/05/2005, 18:56
|
| | | Fecha de Ingreso: marzo-2005 Ubicación: montevideo
Mensajes: 374
Antigüedad: 19 años, 8 meses Puntos: 0 | |
a mi me funciona asi
Código:
function correrPerseguidor() {
perseguidor.duplicateMovieClip("perseguidorDup", cantPerseguidos+5);
//
createEmptyMovieClip("linea", 1000);
linea.lineStyle(1, 0x000000, 100);
linea.moveTo(perseguidorDup._x, perseguidorDup._y);
perseguidorDup.onEnterFrame = function() {
//
this._x += (_root["perse"+perseNum]._x-this._x)/velocidad;
this._y += (_root["perse"+perseNum]._y-this._y)/velocidad;
linea.lineTo(this._x, this._y);
//
if (perseguidorDup.hitTest(_root["perse"+perseNum])) {
_root["perse"+perseNum].gotoAndStop(2);
_root["perse"+perseNum]._alpha = 20;
perseNum++;
//
if (perseNum>=cantPerseguidos) {
correr_btn.enabled = true;
correr_btn._alpha = 100;
}
}
};
}
sldos |