// MovieClip mcIdiomas;
// OVIDORES DE EVENTOS
mcIdiomas.addEventListener(Event.ENTER_FRAME, dondeEstoy);
// FUNCIONES DE EVENTO
function dondeEstoy (evento:Event):void
{
if ( currentFrame == 1 )
{
trace ( "Estoy en el frame 1" );
}
//Aqui quiero colocar un condicional para cuando la TimeLine esté en el frame 25
{
trace ( "Estoy en el frame 25" );
}
}
Cómo debe ser ese condicional?
Desde ya muchas gracias.

Zguillez