A ver si esto te sirve..
Código:
function init() {
tiempo = 10;
wait = setInterval(check, 1000);
}
function check() {
if (tiempo>0) {
trace("Faltan "+tiempo+" segundos para terminar");
tiempo--;
} else {
trace("Time Over...try again");
clearInterval(wait);
}
}
init();
Esto funciona con Flash MX o MX 2004 por si las dudas..
Saludos!!