home *** CD-ROM | disk | FTP | other *** search
- stop();
- this.jump = new Sound(this);
- this.jump.attachSound("bomtoons_jump");
- this.select = new Sound(this);
- this.select.attachSound("bomtoons_select");
- this.lose = new Sound(this);
- this.lose.attachSound("bomtoons_lose");
- this.thro = new Sound(this);
- this.thro.attachSound("bomtoons_throw");
- this.win = new Sound(this);
- this.win.attachSound("bomtoons_win");
- this.shrink = new Sound(this);
- this.shrink.attachSound("bomtoons_shrink");
- this.hurt = new Sound(this);
- this.hurt.attachSound("bomtoons_hurt");
- this.whichdude = 0;
- this.onEnterFrame = function()
- {
- if(Key.isDown(32))
- {
- stopAllSounds();
- this.select.start();
- delete this.onEnterFrame;
- this.gotoAndStop(2);
- }
- if(this.whichdude == 0)
- {
- this.arrow._x = 190;
- }
- if(this.whichdude == 1)
- {
- this.arrow._x = 275;
- }
- if(this.whichdude == 2)
- {
- this.arrow._x = 360;
- }
- };
-