Tema: [AS Battle]
Ver Mensaje Individual
  #7 (permalink)  
Antiguo 12/10/2005, 18:46
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 3 meses
Puntos: 193
Frames por segundo 100

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;
cont.onEnterFrame = function() {
	this._rotation += 15;
	if (a++<149) {
		x = 40*Math.sin(a*3.5);
		y = 40*Math.cos(a*3.5);
		if (a<2) {
			cont.moveTo(x, y);
		}
		cont.lineStyle(1, 0x0066cc, 20);
		cont.lineTo(x, y);
	} else {
		if (a++<300) {
			x = 60*Math.sin(a*1);
			y = 60*Math.cos(a*1);
			if (a<2) {
				cont.moveTo(x, y);
			}
			cont.lineStyle(1, 0x0066cc, 15);
			cont.curveTo(x*-0.1, y*-0.2, x*-0.1, y*-0.2);
			cont.lineTo(x, y);
		} else {
			var color:Color = new Color(cont);
			color.setRGB(random(0xfff));
		}
	}
};