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

  1. bgmSnd.loadSound("snd/bgm_0.mp3",false);
  2. this.onEnterFrame = function()
  3. {
  4.    if(bgmSnd.getBytesLoaded() >= bgmSnd.getBytesTotal())
  5.    {
  6.       bgmSnd.setVolume(40);
  7.       bgmSnd.start(0,999);
  8.       this.onEnterFrame = null;
  9.    }
  10. };
  11.