hola amigo lo puedes hacer con un sencillo cuenta atras aqui te dejo un ejemplo para crear uno
Código PHP:
stop();
//Creo una variable que mide el tiempo
//desde el inicio de la pelicula en segundos
//mas el tiempo que le deseo asignar a la cuenta atrás
CuentaAtras = Math.round(getTimer()/1000)+10;
//Creo una funcion donde
_root.onEnterFrame = function() {
//"Tiempo" es el tiempo desde el inicio de la pelicula
Tiempo = Math.round(getTimer()/1000);
//El tiempo "Restante" es
//la diferencia de "CuentaAtras" y "Tiempo"
Restante = CuentaAtras-Tiempo;
//Escribo en la caja de texto
tiempo.text = Restante;
//Cuando la cuenta atras finalice
//Voy al fotograma 2
if (Tiempo>=CuentaAtras) {
//aqui puedes poner las funciones que quieres que se ejecuten cuanto termina el tiempo
//en este caso pasa al segundo frame de la pelicula pricipal
_root.gotoAndStop(2);
}
};
ahora si lo necesitas en función te recomiendo esto
Código PHP:
function cuentaAtras(Segundos:Number, funcion:Function,FuncionVar:Array) {
var Funcion:Function = funcion;
var MCA:MovieClip =_root.createEmptyMovieClip("McCuentaAtras", _root.getNextHighestDepth());
var SegundosInicio:Number = Math.round(getTimer()/1000)+Segundos;
MCA.onEnterFrame = function() {
var TiempoTran:Number = Math.round(getTimer()/1000);
var TiempoRestante:Number = SegundosInicio-TiempoTran;
if (TiempoTran>=TiempoRestante) {
Funcion(FuncionVar);
this.removeMovieClip();
}
};
}
aquí te pongo un ejemplo de como utilizarlo lo demás es simple lógica
Código PHP:
stop()
//Function de cuenta atras
function cuentaAtras(Segundos:Number, funcion:Function,FuncionVar:Array) {
var Funcion:Function = funcion;
var MCA:MovieClip =_root.createEmptyMovieClip("McCuentaAtras", _root.getNextHighestDepth());
var SegundosInicio:Number = Math.round(getTimer()/1000)+Segundos;
MCA.onEnterFrame = function() {
var TiempoTran:Number = Math.round(getTimer()/1000);
var TiempoRestante:Number = SegundosInicio-TiempoTran;
if (TiempoTran>=TiempoRestante) {
Funcion(FuncionVar);
this.removeMovieClip();
}
};
}
//Funcion Que se repetira cada x tiempo
function escribeTexto(contenido:String) {
CajaTexto.text = contenido
}
// Creamos una caja de texto donde colocaremos el mensaje
this.createTextField("CajaTexto", 1, 0, 0, 150, 20);
// Activamos las funcion escribeTexto cada x tiempo con un mensaje diferente
cuentaAtras(5,escribeTexto,['Hola']);
cuentaAtras(8,escribeTexto,['Adios']);
cuentaAtras(9,escribeTexto,['Se Acabo']);