001
010
100
entonces cuando el numero sea menor a 10 se le agreguen los dos ceros y cuando sea menor que 100 se le agregue un cero, pero mejor les paso el còdigo, por favor ayuda.
Código:
onClipEvent (load) { //this._xscale = 90 //this._yscale = 90 this.contador = 000 numero = this.contador } onClipEvent (enterFrame) { //this._xscale = this._xscale + 20 //this._yscale = this._yscale + 20 this.contador = this.contador + 1 if (contador > 516){ contador = 516 + 0 }else{ this.contador = this.contador + 1 } /*if (numero< 10) { this.contador = "0" + "0" + numero }*/ }