tengo problemilla con mc con este codigo:
on (rollOver)
{
_root.agradecimientos.onEnterFrame = function ()
{
if (this._currentframe != 45)
{
this.nextFrame();
}
else
{
this.stop();
delete this["onEnterFrame"];
} // end if
};
}
on (rollOut)
{
_root.agradecimientos.onEnterFrame = function ()
{
if (this._currentframe != 1)
{
this.prevFrame();
}
else
{
this.stop();
delete this["onEnterFrame"];
} // end if
};
}
Y FUNCIONA BIEN, LO QUE PASA ES QUE CUANDO CARGO ESTE CLIP A LA LINEA PRINCIPAL DE TIEMPO, MEDIANTE LOADMOVIE...NO FUNCIONA
SABEIS ALGUN TRUQUILLO???
SALUDOS
