Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/01/2007, 17:16
visual_100
 
Fecha de Ingreso: enero-2007
Mensajes: 12
Antigüedad: 17 años, 3 meses
Puntos: 0
Action para ir a otra escena

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?