home *** CD-ROM | disk | FTP | other *** search
- count = 1300;
- a = 0;
- temp_h = _height;
- temp_w = _width;
- this.onEnterFrame = function()
- {
- if(a == 0)
- {
- count -= 1;
- a = 3;
- if(_root.chara01.nop3 + _root.chara02.nop3 + _root.chara03.nop3 > 9)
- {
- kyori_bg._alpha = 100;
- a = 0;
- }
- else
- {
- kyori_bg._alpha = 0;
- }
- }
- else
- {
- a -= 1;
- }
- if(count < 0)
- {
- _global.clr = 1;
- }
- tmp = count;
- x1000 = Math.floor(tmp / 1000);
- this.k1000.gotoAndStop(1 + x1000);
- tmp -= x1000 * 1000;
- x100 = Math.floor(tmp / 100);
- this.k100.gotoAndStop(1 + x100);
- tmp -= x100 * 100;
- x10 = Math.floor(tmp / 10);
- this.k10.gotoAndStop(1 + x10);
- tmp -= x10 * 10;
- x1 = Math.floor(tmp);
- this.k1.gotoAndStop(1 + x1);
- };
-