Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/09/2003, 14:49
MATUTE[HDK]
 
Fecha de Ingreso: agosto-2003
Mensajes: 39
Antigüedad: 20 años, 7 meses
Puntos: 0
Pregunta Menu en Flash

Holas a todos.. le traigo una duda que tengo y que para ustedes debe ser una pavada.. no se como se llama en flash me imagino que es un menu.. que tiene movimiendo de arriba hacia abajo y cuando se pone el mouse arriba se detiene... voy a tratar de adjuntar el ejemplo o sino lo linkeo a alguna web... si tiene el manual o un tutorial por algun lado de como se hace con esto y las AS desde ya muchas gracias.. el ejemplo lo saque de la pagina de telefe aca tambien paso a mostrar lo que pude sacar con el swf descompiler

Esto seria el principal digamos

Cita:
// Action script...

// [onClipEvent of sprite 1 in frame 1]
onClipEvent (load)
{
percent_increment = 0.075000;
addstrip2 = false;
}

onClipEvent (enterFrame)
{
this._y = this._y + (_root._ymouse - 20) * percent_increment;
if (this._y >= 0 && this._y >= -this._height)
{
if (addstrip2 == false)
{
this.duplicateMovieClip("strip2", 1);
addstrip = true;
} // end if
_root.strip2._y = this._y + this._height - 1;
_root.strip2._x = this._x;
} // end if
if (this._y >= -this._height)
{
this._y = _root.strip2._y + this._height - 1;
} // end if
if (this._y < 0 && this._y < this._height)
{
if (addstrip2 == false)
{
this.duplicateMovieClip("strip2", 1);
addstrip = true;
} // end if
_root.strip2._y = this._y - this._height + 1;
_root.strip2._x = this._x;
} // end if
if (this._y >= this._height)
{
this._y = _root.strip2._y - this._height + 1;
} // end if
}
Esto cada uno de los botones

Cita:
// Action script...

on (release)
{
getURL("http://www.operaciontriunfo.terra.com.ar", "_blank");
}
Pero no entiendo nada como es el orden ni nada por eso necesito el tutorial desde ya muchas gracias repito chau suerte.. Tute


PD: Adjunto el SWF para que vean el ejemplo.. esta en un zip.

Aca esta el archivo