home *** CD-ROM | disk | FTP | other *** search
- stop();
- fadeTitle = 101;
- startGameBut.onRelease = function()
- {
- gotoAndStop("Instructions");
- play();
- };
- freegamesBtn.onRelease = function()
- {
- getUrl("http://www.freegamesforyourwebsite.com/click.php?gid=260&area=menu", "_blank");
- };
- highscoresBut.onRelease = function()
- {
- gotoAndStop("HighScores");
- play();
- };
- optionsBut.onRelease = function()
- {
- gotoAndStop("Options");
- play();
- };
- if(!titleSong)
- {
- titleSong = new Sound(_root.createEmptyMovieClip("titleSongMC",5000));
- titleSong.attachSound("Feed Us.mp3");
- }
- if(titleSong.position == 0)
- {
- titleSong.start(0,999);
- }
- this.onEnterFrame = function()
- {
- if(fadeTitle < 101)
- {
- fadeTitle -= 5;
- titleSong.setVolume(fadeTitle);
- fade._alpha = 100 - fadeTitle;
- if(fadeTitle == 0)
- {
- titleSong.stop();
- playSFX(10);
- _root.startEngine();
- gotoAndStop("gameMain");
- play();
- }
- }
- else if(fade._alpha > 0)
- {
- fade._alpha -= 5;
- }
- };
-