home *** CD-ROM | disk | FTP | other *** search
/ The Great Adventure of Natural Gas / start / start.swf / scripts / DefineSprite_318 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-01-01  |  432 b   |  25 lines

  1. function pasQuit()
  2. {
  3.    this._visible = false;
  4.    _parent.menu.gotoAndPlay("grand");
  5.    _parent.menu._visible = true;
  6. }
  7. btnfermer.onRelease = function()
  8. {
  9.    _visible = false;
  10.    fscommand("quit");
  11. };
  12. _visible = false;
  13. btnClose.onRollOver = function()
  14. {
  15.    btnClose.gotoAndPlay("in");
  16. };
  17. btnClose.onRollOut = function()
  18. {
  19.    btnClose.gotoAndPlay("out");
  20. };
  21. btnClose.onRelease = function()
  22. {
  23.    pasQuit();
  24. };
  25.