Вот что 4тый ASV показывает

Код:
function sled() {
x = [];
y = [];
this.createEmptyMovieClip("o", ++depth, {_x:50, _y:150});
o.onEnterFrame = function () {
i++;
o._x = o._x + (5 - random (5));
o._y = 150 - (10 - random (20));
x.push(o._x);
y.push(o._y);
if (o._x >= 400) {
o.onEnterFrame = null;
i = 0;
drawLine();
}
};
}
function drawLine() {
this.onEnterFrame = function () {
n++;
duplicateMovieClip ("line", "line" + n, n);
_root["line" + n]._x = x[n];
_root["line" + n]._y = y[n];
_root["line" + n]._xscale = x[n + 1] - x[n];
_root["line" + n]._yscale = y[n + 1] - y[n];
_root["line" + n].fade();
if (n >= (x.length - 2)) {
this.onEnterFrame = null;
x.splice(0);
y.splice(0);
n = 0;
sled();
}
};
}
stop();
fscommand ("showmenu", "false");
this.onLoad = function () {
function () {
};
};
this.lineStyle(0, 16711680, 100);
this.moveTo(-2, 150);
this.lineTo(552, 150);
MovieClip.prototype.fade = function () {
this.onEnterFrame = function () {
this._alpha = this._alpha - 1;
if (this._alpha <= 0) {
this.removeMovieClip();
}
};
};
this.createEmptyMovieClip("line", 0);
with (line) {
lineStyle(1, 65280, 100);
lineTo(100, 100);
_visible = false;
}
sled();