Código:
function darSegundos():Number { var nSegundos:Number = Math.floor(getTimer() / 1000); return nSegundos; } function moverSegundero():Void { var nRotacion:Number = darSegundos(); // LA LINEA SIGUIENTE NO FUNCIONA CON this, PERO SI CON _root, // NO ENTIENDO POR QUE. // TAMPOCO ENTIENDO POR QUE SI HAGO UN TRACE A THIS DENTRO // DE ESTA FUNCION ME DEVUELVE undefined // NO SE SUPONE QUE ESTE this DEBERIA HACER REFERENCIA A LA // LINEA DE TIEMPO PRINCIPAL? //(el clip mcSegundero esta en _root) Ahi va la linea: this.mcSegundero._rotation += nRotacion; } setInterval(moverSegundero, 1000);