Featured FLA
» Author: Nick Kouvaris
» Title: Znax
» Description: Znax is a board game. Click 4 tiles of the same color and form squares as big as you can. You will erase all the tiles inside the square and collect points. Get maximum score if you make a square with game edges.
» More by:Nick Kouvaris
Featured Site
» Author Agence WOP Digital Agency
» Title: Electricdrum
» Description: French WOP Agency, 3D websites, Flash (Papervision, Away 3D), event or institutional projects. The agency operates on all digital projects: consulting, design, graphic design, development, online communication. The WOP agency follows you on the implementation of original, creative and optimized digital projects.
A little bit of code is needed to put the finishing touches on your game. Click on the hit area button and, in every keyframe, add this code:
on(release) {
score=score+1;
}
This makes it so that when you click on the button area the score is incremented by one. Also, not done by this code, when you click on the button area the picture you drew for when he gets hit will appear, if you chose to do that.
Next, in one of the final frames of the enemy movie clip, it doesn't matter which layer since they all end at the same frame, insert the following code:
gotoAndPlay(2);
This will send the movie clip back to frame 2 when it reaches the end. If you didn't have this it would go back to frame 1 and then set score to zero every time.
Now all you need to do is drag the enemy movie clip onto the stage in its own layer and you're done! You will have an animated sprite moving around the screen and whenever you shoot him you get plus 1 to your score. Of course, you can make this very complex with more guys, levels, and a nice background, but I'll leave that up to you. Hope that you have found this tutorial helpful!
Please send any feedback or suggestions or problems with the tutorial to luke@zazeran.com . Thanks!
Luke Knepper only had two weeks of Flash experience when this tutorial was written, and figured most of it out through little bits and pieces from internet articles and the built in tutorial. His site, zazeran.com, is an online archive of games and programs and features Flash games.