Internet Commerce

Partners & Affiliates

Developer Channel


Featured Flash FLA
Gallery Downloads 11401 Flash Movies | 5 New Flash Movies Added
What's New | Top 100

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


Random FLAs | Add Flash Movie
Featured Flash Site
Gallery Downloads 4941 Flash Sites | 1 New Flash Links
What's New | Top 100 Flash Site

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.


Random Links | Add your own Flash Related Links
Flash Tutorials 1481 Tutorials 7 New Tutorials Added!
What's New | Top100

» How To Make A Simple Animation Using Christmas Clips
» Simple Step by step flash game tutorial Spot the diffrence
» How To Make A Moving Text Slide
» Create Flash Banner With Text Float Effect
» How To Make Zoo Photos Slideshow
» How To Make A Dolphin Photos Slideshow
» How To Make A Fathers Day Slideshow
» How To Make A Transparent Background of Your Flash File
» Create Flash Banner With Text Disco Light Effect Today we will introduce you a Text Disco Light eff
» Unknown Tag: Title10
Random Tutorial | Add Site


Tutorials Home What's New Top Rated Submit myTutes Random!

Search Tutorials


Tutorials Tutorials » Games

Categories Building Games in Flash 5 - Part 3 - Enemies and collisions
Author: David Doull | Website: http://www.artifactinteractive.com.au |

 
Page 8
«prev 1 2 3 4 5 6 7 8 9 10 11 12 13 next»

Step 4: Scores and explosions

We are now going to add in a score display, some graphics to show the enemy exploding and some collision detection code which will detect if the players spaceship has hit an enemy spaceship.

Score Display

Close the actions window if it is still open.
On the main timeline create a new layer called score.
On this layer create a dynamic text box, you can put it anywhere on the screen. Stretch the text box out so it is wide enough to display the score (as shown below).

With the text box selected click on the text options panel and set the drop down list to dynamic text, the variable name to score, uncheck the Selectable option and click the embed fonts button for numbers (as shown on the right).

Now, still on the main timeline select the first frame of the control frame and open up the actions window (Window> actions). Underneath the existing code on this frame add the line
    score=0;
This simply sets up the score variable and sets it to zero at the start of the game.


Exploding enemies!

Now we want to add in an explosion animation for the enemy movieclip when its hit by a laser. Open the enemy movieclip in Edit mode. (Doubleclick the enemy1 movieclip on the stage or open the enemy movie clip from the library).

At the moment you should have one layer with one frame containing the enemy graphic. On that layer create four new keyframes and modify the graphic to depict the enemy exploding (as shown below). Select frame six of this layer and insert a blank keyframe (Insert> Blank key frame or F7).

Now create a new layer (Insert> Layer) and call it control. Select the first frame of this layer and open up the actions window for the frame (Window> Actions). Type the following code:
    stop();

Now insert a blank keyframe on frame 6 of this control layer (Select frame 6 and then Insert> Blank key frame). Select the new blank key frame on frame 6 and open up the actions window
for the frame (Window> Actions). Type the following code:
    stop();

All we did was to cause the enemy movie clip to stop on frame one and frame 6. But why?
We stop the enemy movie clip on frame one because we don't want the explosion animation to play until the enemy is hit by a laser.
We have previously added the code to play the animation from frame 2 when the laser collides with the enemy movie clip.
We stop the movie clip after the explosion on frame 6 because there are no graphics on this frame. The movie clip still exists and will still keep moving across the stage until it reaches the left hand side and is reset. However as there are no graphics being displayed Flash wont detect collisions between the movie clip and the spaceship or the lasers. Which makes sense, because we don't want the enemy to collide with anything once its been blown up.

«prev 1 2 3 4 5 6 7 8 9 10 11 12 13 next»

» Level Intermediate

Added: : 2001-05-04
Rating: 8.86 Votes: 517
Hits: 6983
» Author
No details available.
» Download
Download the files used in this tutorial.
Download (416 kb)
Get conversion and unzipping tools for PC and Mac here!

» Forums
More help? Search our boards for quick answers!

Please rate this tutorial, 10 is the top rating, you can also click the comments link to read/write a review.
10 9 8 7 6 5 4 3 2 1
Read or Post Comments