Hola jancar1975:
En el primer frame de tu película coloca éste código:
Código actionscript:
Ver originalstop();
CuentaAtras = Math.round(getTimer() / 1000) + 10;
_root.onEnterFrame = function()
{
Tiempo = Math.round(getTimer() / 1000);
Restante = CuentaAtras - Tiempo;
if (Tiempo >= CuentaAtras)
{
_root.MC1._visible = false;
}
};
Espero haberte sido de ayuda.