disegni la tua bolla e la chiami "bolla" (grande idea!)

dopodichè come actions le dai...
codice:
onClipEvent (enterFrame) {
	_y -= speedy;
	if (_y < 0 - _height / 2) {
		_root.initbolla(this);
	}
}
mentre ad un frame sulla timeline associ questo

codice:
/////// Super Bollez p4n7a's script ////////
maxbolle = 30;
for (i = 1; i < maxbolle; i++) {
	duplicateMovieClip(bolla, "bolla" + i, i);
	initbolla(_root["bolla" + i]);
}
bolla._visible = false;
function initbolla(arg) {
	with (arg) {
		size = random(70) + 30;
		_xscale = size;
		_yscale = size;
		_alpha = size;
		_x = random(Stage.width);
		_y = Stage.height + random(200);
	}
	arg.speedy = size / 10;
}
ciao