home *** CD-ROM | disk | FTP | other *** search
- this.onEnterFrame = function()
- {
- if(_root.menu_mc.time_bar.bar._xscale > 0)
- {
- _root.menu_mc.time_bar.bar._xscale--;
- _root.score += 10;
- _root.FNscore("s",_root.score);
- }
- else
- {
- delete this.onEnterFrame;
- if(_root.level == 3)
- {
- _root.gotoAndPlay("ending");
- }
- else
- {
- this.play();
- }
- }
- };
- this.stop();
-