buenas he realizado un boton con fade in fade out y no se como hacer para decirle a ese boton q al clikear vaya a escena 2...este es el action de mi boton
on (rollOver)
{
CPAnima.onEnterFrame = function ()
{
if (this._currentframe != 12)
{
this.nextFrame();
}
else
{
this.stop() ;
delete this["onEnterFrame"];
}
};
}
on (rollOut)
{
CPAnima.onEnterFrame = function ()
{
if (this._currentframe != 1)
{
this.prevFrame();
}
else
{
this.stop() ;
delete this["onEnterFrame"];
}
};
}
He probado varias opciones y nada...¿que me recomendais?