home *** CD-ROM | disk | FTP | other *** search
/ Sony Picture Package / PICTUREPACKAGE.ISO / Cyber / en / opening.swf / scripts / frame_1 / DoAction.as
Text File  |  2004-01-13  |  939b  |  46 lines

  1. function setColor()
  2. {
  3.    skipColor = new Color(this.skip_mc);
  4. }
  5. function rollOverAction()
  6. {
  7.    setColor();
  8.    skipColor.setRGB(rollOverRGB);
  9. }
  10. function rollOutAction()
  11. {
  12.    skipColor.setRGB(initRGB);
  13. }
  14. function pressAction()
  15. {
  16.    mySnd.start();
  17. }
  18. function releaseAction()
  19. {
  20.    skipColor.setRGB(rollOverRGB);
  21.    skipBtn_mc.enabled = false;
  22.    skipBtn_mc._visible = false;
  23.    _parent.main_mc.loadMovie("main.swf");
  24.    this.gotoAndPlay("sceneStart");
  25. }
  26. function returnAction()
  27. {
  28.    skipColor.setRGB(initRGB);
  29.    skipBtn_mc.enabled = true;
  30.    skipBtn_mc._visible = true;
  31. }
  32. bgmSnd = new Sound(this);
  33. thisSnd = new Sound(this);
  34. seSnd = new Sound(this);
  35. mySnd = new Sound(this);
  36. mySnd.loadSound("snd/click.mp3",false);
  37. this.onEnterFrame = function()
  38. {
  39.    if(mySnd.getBytesLoaded() >= mySnd.getBytesTotal())
  40.    {
  41.       this.onEnterFrame = null;
  42.    }
  43. };
  44. var initRGB = 540780;
  45. var rollOverRGB = 2267596;
  46.