class ClaseImagen extends MovieClip { // Propiedades de la clase var Id:Number; var Tipo:Number; var Repeticiones:Number; function ClaseImagen() { this.Id = 0; this.Tipo = 0; this.Repeticiones = 0; } function onEnterFrame() { if (this.hitTest(_root.MCCajaCa)) { if (this.Tipo == 1) { _root.MCPuntos.count += _root.NumPuntosOk - this.Repeticiones; _root.soundAcierto.start(); } else { this.Repeticiones += 1; _root.soundFallo.start(); } this.gotoAndStop(1); _root.ItemActual++; _root.SiguienteImagen("play"); } else if (this.hitTest(_root.MCCajaCo)) { if (this.Tipo == 2) { _root.MCPuntos.count += _root.NumPuntosOk - this.Repeticiones; _root.soundAcierto.start(); } else { this.Repeticiones += 1; _root.soundFallo.start(); } this.gotoAndStop(1); _root.ItemActual++; _root.SiguienteImagen("play"); } else if (this.hitTest(_root.MCCajaCu)) { if (this.Tipo == 3) { _root.MCPuntos.count += _root.NumPuntosOk - this.Repeticiones; _root.soundAcierto.start(); } else { this.Repeticiones += 1; _root.soundFallo.start(); } this.gotoAndStop(1); _root.ItemActual++; _root.SiguienteImagen("play"); } if (this.hitTest(_root.MCCajaQue)) { if (this.Tipo == 4) { _root.MCPuntos.count += _root.NumPuntosOk - this.Repeticiones; _root.soundAcierto.start(); } else { this.Repeticiones += 1; _root.soundFallo.start(); } this.gotoAndStop(1); _root.ItemActual++; _root.SiguienteImagen("play"); } if (this.hitTest(_root.MCCajaQui)) { if (this.Tipo == 5) { _root.MCPuntos.count += _root.NumPuntosOk - this.Repeticiones; _root.soundAcierto.start(); } else { this.Repeticiones += 1; _root.soundFallo.start(); } this.gotoAndStop(1); _root.ItemActual++; _root.SiguienteImagen("play"); } } }