Tema: [AS Battle]
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 12/10/2005, 08:44
Avatar de bernethe
bernethe
 
Fecha de Ingreso: abril-2004
Ubicación: San José, Costa Rica
Mensajes: 384
Antigüedad: 20 años
Puntos: 2
cambio simple pero me apunto

VA CONTRAATAQUE:

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++<150) {
		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 {
		delete this.onEnterFrame;
	}
};
__________________
..::BERNETHE::..