Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/12/2004, 14:48
4ND0R
 
Fecha de Ingreso: diciembre-2002
Ubicación: Estoy por ahi, buscandome
Mensajes: 60
Antigüedad: 21 años, 4 meses
Puntos: 0
Código:
onEnterFrame = function () {
    //asumiendo que vida esta definido en la linea de tiempo principal
    if (_root.gomin.hitTest(_root.bg.mc2) && _root.vida.text > 0) {
        _root.vida.text -= 1;
    } else if (vida.text == 0) {
        gotoAndStop('gameOver');
    }
};
__________________
4ND0R

Última edición por 4ND0R; 18/12/2004 a las 14:50