Help converting small AS 1.0 script to AS 2.0

Hi,

Does anyone have a spare second to update this code from 1.0 to 2.0? It would really get me out of a bind and be much appreciated.

Thanks!
T

Code:

for (n=8; n<50; n++) {
duplicateMovieClip(“bluebit”, “bluebit” add n, n);
setProperty(“bluebit” add n, _rotation, random(360));
setProperty(“bluebit” add n, _alpha, random(30)+80);
setProperty(“bluebit” add n, _xscale, 50+Number(random(60)));
setProperty(“bluebit” add n, _yscale, 50+Number(random(60)));
tellTarget (“bluebit” add n) {
gotoAndPlay(random(5));
}
}