home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / neko_juppiki.swf / scripts / DefineSprite_25 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  343 b   |  19 lines

  1. this.onPress = function()
  2. {
  3.    _parent.btn_stat = "start";
  4.    _parent.game_mode = 2;
  5.    _parent.play();
  6. };
  7. this.onRollOver = function()
  8. {
  9.    this.mc_base.gotoAndPlay("over");
  10. };
  11. this.onRollOut = function()
  12. {
  13.    this.mc_base.gotoAndStop("stay");
  14. };
  15. this.onReleaseOutside = function()
  16. {
  17.    this.mc_base.gotoAndStop("stay");
  18. };
  19.