A Flash Developer Resource Site














Internet Commerce

Partners & Affiliates














Developer Channel

internet.com


Featured Flash FLA
Gallery Downloads 11337 Flash Movies | 1 New Flash Movies Added
What's New | Top 100

Featured FLA

» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden


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

Featured Site

» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.


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

» Make a Flash Slide Show Screen Saver
» Simple flash making tutorial for thanksgiving
» Create flash banner for website
» Create xml slideshow with free template
» How to Insert a Multilingual Subtitle Into Your Flash Video Studio
» How to Create Cool Halloween Slideshow
» Debugging flash using the Firebug console
» Create Flash Slideshow on Blogger
» FLASH TRICKS IN WEB ADVERTISING: FLASH BANNERS
» Unknown Tag: Title10
Random Tutorial | Add Site

Sr Instructional Designer D2L-Moodle,Clearance
WSI Nationwide, Inc.
US-NJ-Fort Monmouth

Justtechjobs.com Post A Job | Post A Resume


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 4
«prev 1 2 3 4 5 6 7 8 9 10 11 12 13 next»

Step 2: Getting the enemies moving

Ok, we have created our enemy movie clip and have set up its start position, now lets get it moving.

If you don't have it still open, open up the actions window for the enemy movie clip.

Underneath the code from the previous step type the following code for the enemies enterFrame clip event:

onClipEvent (enterFrame) {
 if (_root.spaceship.scrollStart){
 this._x-=enemySpeed+_root.mainGround.groundSpeed;
 } else {
 this._x-=enemySpeed;
 }
 if (this._x<-10) {
 reset();
 }
}

This code does two things; it moves the enemy across the stage by reducing its x-coordinate and it resets the enemy if it has moved off the left edge of the stage.

The first if statement checks to see if our variable scrollStart is true?
If it is true then the enemy ships x-coordinate is decreased by enemySpeed+_root.mainGround.groundSpeed otherwise it is decreased by just enemySpeed. So if the ground isn't scrolling the enemy will be moved left by the random number assigned to enemySpeed. If the ground is scrolling the enemy's x-coordinate will be decreased by enemySpeed plus the speed at which the ground is scrolling. We need to do this to ensure the movement looks realistic. If the ground started scrolling and the enemy just kept moving at the same speed it wouldn't look right (try it out if you are not convinced).

The second if statement checks to see if the enemy movie clip has moved off the left of the stage (i.e.: it's x-coordinate is less
than -10). If this is true then the reset function is called. The reset function will reposition the movie clip on the right of the stage and assign a new random speed and y-coordinate.

If you test your flash file you should now have a enemy spaceship moving across the stage and resetting itself after it moves off the left side of the stage.


More enemies

But one enemy isn't going to be a very challenging game, so lets use duplicateMovieClip to add some more enemies. We will put the code to duplicate the enemy in a new layer on the main timeline.

Control Layer

Create a new layer on the main timeline and call it control. Click on the first frame of the control layer and open up the actions window (either Window> Actions or right-click and pick actions).


Type the following code in the actions window.

numEnemy=3;
for (i=2; i<=numEnemy; i++){
 enemy1.duplicateMovieClip( "enemy"+i, i+100 );
}

The first line creates a new variable called numEnemy and sets it to 3. This variable will be the number of enemies on the stage at any one point in time, if you want to make the game harder just try increasing this number.

The next three lines are a for loop. The loop duplicates the enemy1 movie clip.

«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: 512
Hits: 6973
» 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
 
   
 

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs