30/08/2005, 12:30
|
| | | Fecha de Ingreso: agosto-2003 Ubicación: lima
Mensajes: 551
Antigüedad: 21 años, 3 meses Puntos: 0 | |
esta en la ayuda de flash
Código:
this.createEmptyMovieClip("grad", 0);
with (grad) {
colors = [0xFF0000, 0x0000FF];
alphas = [100, 100];
ratios = [0, 0xFF];
matrix = {a:200, b:0, c:0, d:0, e:200, f:0, g:200, h:200, i:1};
beginGradientFill("linear", colors, alphas, ratios, matrix);
moveTo(100, 100);
lineTo(100, 300);
lineTo(300, 300);
lineTo(300, 100);
lineTo(100, 100);
endFill();
}
|