Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/01/2008, 18:47
th12
 
Fecha de Ingreso: diciembre-2007
Mensajes: 7
Antigüedad: 16 años, 4 meses
Puntos: 0
Cambiar fuente de animacion fla

Buenas a todos ,

Tengo este script y me gustarua cambiar el tipo de fuente por ejemplo a IMPACT y el tamaño , como puedo realizarlo ???

getURL("FSCommand:fullscreen", true);
var seconds = 2008;
flasher._visible = false;
counting = true;
refresh = function () {
clock_txt.text = seconds;
};
flashOn = function () {
flasher._visible = true;
flashOnInt = setInterval(flashOff, 100);
};
flashOff = function () {
flasher._visible = false;
clearInterval(flashOnInt);
};
countDownSeconds = function () {
--seconds;
if (seconds<10) {
seconds = "0"+seconds;
}
// end if
if (seconds == 0) {
clearInterval(timer);
clock_txt.text = "0";
setInterval(flashOn, 200);
}
// end if
};
secondInterval = setInterval(countDownSeconds, 10);
timer = setInterval(refresh, 10);
btn.onPress = function() {
if (seconds>0) {
if (counting) {
clearInterval(timer);
counting = false;
} else {
timer = setInterval(refresh, 10);
counting = true;
}
// end if
}
// end else if
};