Ver Mensaje Individual
  #5 (permalink)  
Antiguo 18/12/2004, 15:02
Avatar de goc00
goc00
 
Fecha de Ingreso: enero-2002
Ubicación: 000's DiMensiOn
Mensajes: 979
Antigüedad: 22 años, 3 meses
Puntos: 3
Saludos...

Código:
onEnterFrame = function () {
   if (_root.gomin.hitTest(_root.bg.mc2)) {
      _root.vida--; //me imagino que el texto dinámico se encuentra en el _root
      if(int(_root.vida)==0) {
         _root.vida="GAME OVER"
         delete onEnterFrame; //borra el evento onEnterFrame
      }
   }
};
CyA! & GooD LuCK ;)