Tema: [AS Battle]
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 12/10/2005, 12:49
Avatar de ostrasjo
ostrasjo
 
Fecha de Ingreso: diciembre-2004
Mensajes: 165
Antigüedad: 19 años, 4 meses
Puntos: 0
Se que es un poco el copia y pega pero weno

Código:
var cont:MovieClip = this.createEmptyMovieClip("c", 10);
var x:Number = 0;
var y:Number = 0;
var a:Number = 0;
cont._x = 150;
cont._y = 150;
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++<500) {
			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);
			bol = false;
		} else {
			cont.lineStyle(1, 0xFF9900, 25);
			bol = true;
		}
			cont.lineTo(x, y);
		} else {
			delete this.onEnterFrame;
		}
	}
};