class ClaseContador extends MovieClip { // Propiedades de la clase var tipocuenta:Number; // 0: Ascendente; 1: Descendente var inicio:Number; var fin:Number; var paso:Number; var count:Number; function ClaseContador() { this.tipocuenta = 0; this.inicio = 0; this.fin = -1; this.paso = 1; } function onEnterframe() { if (this.count == this.fin) { // trace("CUENTA TERMINADA"); } } function setTipoCuenta(valor) { this.tipocuenta = valor; } function setInicio(valor) { this.inicio = valor; this.count = valor; } function setFin(valor) { this.fin = valor; } function setPaso(valor) { this.paso = valor; } function SiguientePaso() { if (this.fin == this.count) { this.count = _root.MaxIntentos; _root.RepetirNivel("1"); return; } if (this.tipocuenta == 0) { this.count += this.paso; } else { this.count -= this.paso; } } }