home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / mahjjong.swf / scripts / frame_5 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  676 b   |  44 lines

  1. start.onRollOver = function()
  2. {
  3.    this.bar.gotoAndStop(2);
  4. };
  5. start.onRollOut = function()
  6. {
  7.    this.bar.gotoAndStop(1);
  8. };
  9. start.onRelease = function()
  10. {
  11.    click.start();
  12.    gotoAndPlay(8);
  13. };
  14. ins.onRollOver = function()
  15. {
  16.    this.bar.gotoAndStop(2);
  17. };
  18. ins.onRollOut = function()
  19. {
  20.    this.bar.gotoAndStop(1);
  21. };
  22. ins.onRelease = function()
  23. {
  24.    click.start();
  25.    gotoAndStop(6);
  26. };
  27. preview.onRollOver = function()
  28. {
  29.    this.bar.gotoAndStop(2);
  30. };
  31. preview.onRollOut = function()
  32. {
  33.    this.bar.gotoAndStop(1);
  34. };
  35. preview.onRelease = function()
  36. {
  37.    click.start();
  38.    gotoAndPlay(7);
  39. };
  40. _root.onEnterFrame = function()
  41. {
  42. };
  43. stop();
  44.