People are wondering how to make an intro screen for their games.
The code below works like this. There's a movie clip called splash. Inside that movie clip, is a button with instance name of playbtn. When you click it, the intro screen disappears. You can find this code by searching the wiki for Splash Screen. You want the button to be inside the splash page movie clip because you want that button to disappear as well.
splash.playbtn.onRelease = function() {
splash._visible = false;
}
No comments:
Post a Comment