home *** CD-ROM | disk | FTP | other *** search
- function randSong()
- {
- if(_root.onOrOff == "on")
- {
- rand = random(3);
- _root.musicSphere.gotoAndStop(soundArray[rand]);
- }
- else
- {
- _root.musicSphere.gotoAndStop("noSound");
- }
- }
- stop();
- _root.musicSphere.gotoAndStop("intro2");
- soundArray = new Array("level1","level3","level4");
- _root.onOrOff = "on";
-