home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / 3brothers.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2008-09-23  |  690 b   |  42 lines

  1. stop();
  2. BN_start.onRollOver = function()
  3. {
  4.    this.nextFrame();
  5. };
  6. BN_start.onRollOut = function()
  7. {
  8.    this.prevFrame();
  9. };
  10. BN_start.onReleaseOutside = function()
  11. {
  12.    this.prevFrame();
  13. };
  14. BN_start.onRelease = function()
  15. {
  16.    gotoAndStop("game");
  17. };
  18. BN_help.onRollOver = function()
  19. {
  20.    this.nextFrame();
  21. };
  22. BN_help.onRollOut = function()
  23. {
  24.    this.prevFrame();
  25. };
  26. BN_help.onReleaseOutside = function()
  27. {
  28.    this.prevFrame();
  29. };
  30. BN_help.onRelease = function()
  31. {
  32.    gotoAndStop("help");
  33. };
  34. if(firstInit == undefined)
  35. {
  36.    firstInit = false;
  37.    SoundObj = new Sound(this);
  38.    SoundObj.attachSound("SoundObj");
  39.    vol = 1;
  40. }
  41. title_mc._visible = true;
  42.