21/09/2009, 15:41
|
| | | Fecha de Ingreso: mayo-2007 Ubicación: { Dash Berlin }
Mensajes: 1.879
Antigüedad: 17 años, 5 meses Puntos: 67 | |
Respuesta: Duplicar botones a partir de 1 botón Asi: Cita: var botonera = "coches+motos+camiones+aviones";
valores = botonera.split("+");
trace(valores)
//botonmenu._visible = 0;
for(var i:Number=0;i<valores.length;i++)
{
var mc:MovieClip=botonmenu.duplicateMovieClip("boton"+ i,this.getNextHighestDepth());
mc._y = 100*i;
//mc.i=i;
mc.contenido=valores[i];
mc.onRelease = function()
{
trace(this.contenido);
}
}
__________________ { Flash } |