home *** CD-ROM | disk | FTP | other *** search
- cn = 2;
- i = 0;
- while(i < Stage.height + 20)
- {
- j = 0;
- while(j < Stage.width + 20)
- {
- m = masker0.duplicateMovieClip("masker0" + i + "" + j,this.getNextHighestDepth());
- m._x = j;
- m._y = i;
- radian = (i + j) * 3.141592653589793 / 180;
- m.s = radian * 20 >= 40 ? radian * 20 : 40;
- m.big();
- j += 20;
- }
- i += 20;
- }
- MovieClip.prototype.big = function()
- {
- this.onEnterFrame = function()
- {
- this._xscale += this.s;
- this._yscale += this.s;
- if(this._width > 40)
- {
- delete this.onEnterFrame;
- }
- };
- };
- stop();
-