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

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