Vorrei capire cosa c'e che non va nel mio script
Vorrei fare un sfondo che si abbassa con delle bolle allinterno
le quali abbia lo stesso tempo !

Questo è il Codice che ho scritto nelle bolle:

onClipEvent (load) {
this._x = Math.random()*550;
//this._y = Math.random()*400;
velocità = Math.random()*3+3;
curvatura = Math.random()*2-1;
rotazione = Math.random()*6-3;
}
onClipEvent (enterFrame) {
this._y -= velocità;
this._x += curvatura;
this._rotation += rotazione;
// riporta in basso
if (this._y<_root.onde_is._y-(_root.onde_is._y/2)) {
this._y = 400;
}
// Da un lato all'altro
if (this._x<0) {
this._x = 550;
}
if (this._x>550) {
this._x = 0;
}
this._xscale = 50;
this._yscale = 50;
}

invece questo è il codice che hoscritto nel 1°frame:
for (var i = 0; i<20; i++) {
bolla.duplicateMovieClip("bolla1"+i, i);
}
Dove ho sbagliato?