26/03/2004, 01:56
|
| | | Fecha de Ingreso: noviembre-2002 Ubicación: En un pequeño, helado, obscuro reino... llamado Dinamarca.
Mensajes: 1.852
Antigüedad: 22 años Puntos: 1 | |
Con este code usando el API de ActionScript se pueden crear botones y diversas figuras.
Tambien puedes usar un for para que te cree varios botones de una vez.
_root.createEmptyMovieClip("button", 1);
_root.button.lineStyle(.1, 0x003366, 100);
_root.button.beginFill(0x00cccc, 100);
_root.button.moveTo(-25, -15);
_root.button.lineTo(70, -15);
_root.button.lineTo(70, 15);
_root.button.lineTo(-25, 15);
_root.button.endFill(-25, -15);
_root.button._x=225;
_root.button._y=120;
Salu2 |