home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / crazycube.swf / scripts / DefineSprite_116 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  190 b   |  15 lines

  1. function hide()
  2. {
  3.    this._visible = false;
  4. }
  5. function show()
  6. {
  7.    this._visible = true;
  8. }
  9. hide();
  10. this.exitHelp.onRelease = function()
  11. {
  12.    hide();
  13.    _parent.menu.show();
  14. };
  15.