home *** CD-ROM | disk | FTP | other *** search
- w = 100;
- space = 163;
- this.attachmovie("win","win" + w,w);
- this["win" + w]._x = 0;
- this["win" + w]._y = space * 2;
- w++;
- this.attachmovie("win","win" + w,w);
- this["win" + w]._x = 0;
- this["win" + w]._y = space;
- w++;
- this.attachmovie("win","win" + w,w);
- this["win" + w]._x = 0;
- this["win" + w]._y = 0;
- w++;
- this.attachmovie("win","win" + w,w);
- this["win" + w]._x = 0;
- this["win" + w]._y = - space;
- w++;
- wc = 100;
- onenterframe = function()
- {
- if(!this["win" + wc]._visible)
- {
- if(r.floornow < r.totalfloor)
- {
- r.floornow = r.floornow + 1;
- this.attachmovie("win","win" + w,w);
- this["win" + w]._x = 0;
- this["win" + w]._y = this["win" + (w - 1)]._y - 163;
- w++;
- wc++;
- }
- else
- {
- this.attachmovie("wintop","win" + w,w);
- this["win" + w]._x = 0;
- this["win" + w]._y = this["win" + (w - 1)]._y - 163;
- w++;
- wc++;
- r.ontop = 1;
- delete onenterframe;
- }
- }
- };
-