home *** CD-ROM | disk | FTP | other *** search
- function goAhead()
- {
- if(this.rdy)
- {
- stopAllSounds();
- coming._visible = true;
- bgmusic.start(0,999);
- coming.gotoAndPlay(1);
- coming.onPress = function()
- {
- this.gotoAndPlay(100);
- delete this.onPress;
- };
- delete this.onEnterFrame;
- this.onEnterFrame = function()
- {
- if(!Key.isDown(65))
- {
- aup = true;
- }
- if(Key.isDown(65) && aup)
- {
- coming.gotoAndPlay(100);
- delete this.onEnterFrame;
- }
- };
- }
- }
- bgmusic = new Sound(this);
- bgmusic.attachSound("bgmusic");
- delete this.onEnterFrame;
- stop();
- coming._visible = false;
- coming.stop();
- aup = false;
- this.onEnterFrame = function()
- {
- if(!Key.isDown(65))
- {
- aup = true;
- }
- if(Key.isDown(65) && aup)
- {
- goAhead();
- aup = false;
- }
- };
-