12/10/2005, 14:52
|
| | | Fecha de Ingreso: abril-2004 Ubicación: San José, Costa Rica
Mensajes: 384
Antigüedad: 20 años, 7 meses Puntos: 2 | |
A La Cargaaaaa!!! Apunten, FUEGOOOO....
Código:
var cont:MovieClip = this.createEmptyMovieClip("c", 10);
var x:Number = 0;
var y:Number = 0;
var a:Number = 0;
cont._x = Stage.width/2;
cont._y = Stage.height/2;
var bol:Boolean = true;
this.onEnterFrame = function() {
if (a++<149) {
x = 80*Math.sin(a*3.5);
y = 80*Math.cos(a*3.5);
if (a<2) {
cont.moveTo(x, y);
}
if (bol) {
cont.lineStyle(1, 0x0066cc, 50);
bol = false;
} else {
cont.lineStyle(1, 0xFF9900, 50);
bol = true;
}
cont.lineTo(x, y);
} else {
if (a++<750) {
x = 150*Math.sin(a*1);
y = 150*Math.cos(a*1);
if (a<2) {
cont.moveTo(x, y);
}
if (bol) {
cont.lineStyle(1, 0x0066cc, 25);
cont.curveTo(x*-0.1, y*-0.2, x*-0.1, y*-0.2);
bol = false;
} else {
cont.lineStyle(1, 0xFF9900, 25);
cont.curveTo(x*-0.1, y*-0.2, x*-0.1, y*-0.2);
bol = true;
}
cont.lineTo(x, y);
} else {
delete this.onEnterFrame;
}
}
};
__________________ ..::BERNETHE::.. |