Encontré lo siguiente en el ejemplo de burbujitas y creo que me puede servir:
Código :
MovieClip.prototype.creaburbu = function(nivel, radio) {
nuevo = this.createEmptyMovieClip("bola"+nivel, nivel);
with (nuevo) {
angfinal = 360;
lineStyle(0, 0xcccccc, 0);
matrix = {matrixType:"box", x:-4, y:-10, w:radio, h:radio, r:0};
beginGradientFill("radial", [0xffffff, 0xCBECFE], [100, 60], [0, 0xff], matrix);
radian = Math.PI/180;
segm = 60;
moveTo(radio, 0);
for (var s = 0; s<=360; s += segm) {
c_x = radio*Math.cos(s*radian);
c_y = radio*Math.sin(s*radian);
a_x = c_x+radio*Math.tan(segm/2*radian)*Math.cos((s-90)*radian);
a_y = c_y+radio*Math.tan(segm/2*radian)*Math.sin((s-90)*radian);
curveTo(a_x, a_y, c_x, c_y);
}
endFill();
_y = random(20)*10+200;
_x = random(40)*20;
}
this.nuevo.onEnterFrame = function() {
velocidad = random(6)+1;
direccion = random(8)+1;
movimiento = random(6)+1;
this._y = this._y-velocidad;
this._alpha = this._y-5;
if (direccion == 1) {
this._x = this._x-movimiento;
}
if (direccion == 4) {
this._x = this._x+movimiento;
}
if (this._y<5) {
this.removeMovieClip();
}
};
ult += 20;
};
//esto es fuera del proto
for (i=0; i<50; i++) {
_root.creaburbu(i, random(6)+10);
}
Ahora la pregunta es: ¿qué valores podría modificar para en vez de burbujitas pueda ser un símbolo? Gracias de antemano.