home *** CD-ROM | disk | FTP | other *** search
- stop();
- if(!bgsndmc)
- {
- bgsnd = new Sound();
- bgsndmc = _root.createEmptyMovieClip("bgsndmc",_root.getNextHighestDepth());
- bgsnd.setVolume(0);
- vol = 0;
- curvol = 70;
- changeBGMusic = function(music)
- {
- bgsndmc.toplay = music;
- vol = bgsnd.getVolume();
- bgsndmc.onEnterFrame = function()
- {
- vol -= 5;
- if(vol < 0)
- {
- bgsnd.stop();
- if(this.toplay !== undefined)
- {
- bgsnd.attachSound(this.toplay);
- bgsnd.start(null,128);
- }
- vol = 0;
- bgsndmc.onEnterFrame = function()
- {
- vol += 5;
- if(vol > curvol)
- {
- vol = curvol;
- delete this.onEnterFrame;
- }
- bgsnd.setVolume(vol);
- };
- }
- bgsnd.setVolume(vol);
- };
- };
- }
- changeBGMusic("menumusic");
-