
Код:
_root.Mainbox.scale_v_line = function (i) {
this.attachMovie ("v_line", "v_line" + i, this.getNextHighestDepth () + i, {_x:i * 120});
this.i = i;
this["v_line" + i].onEnterFrame = function () {
if (this._height < 25) {
this._height++;
} else {
delete this.onEnterFrame;
if (this._parent.i < 3) {
this._parent.scale_v_line (++this._parent.i);
}
}
};
};
_root.Mainbox.scale_v_line (1);
2 alkonaft: хотябы потому что не у всех еще стоит плеер 8.