10/11/2006, 06:51
|
| | Fecha de Ingreso: septiembre-2006
Mensajes: 9
Antigüedad: 18 años, 2 meses Puntos: 0 | |
Duda sobre alcances
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);
|