Create a simple Flash game

Tap the power of Flash’s ActionScript capabilities to build a simple game with animated characters.

step02

02. A class, in this context, is a text file with a set of instructions and information about an object. In this case, we need to create a file for the class we just created: ‘MO’. Choose File > New, then from the Type list select ActionScript File. We’ll enter all the code for MO into this file. Save the file as MO.as.

step03

03. Enter the following code into your MO.as file (you can copy and paste it from the file Step 3 on the cover CD), then save the file and return to the main Flash movie. class MO extends MovieClip { var movedelta = 10; function onEnterFrame() { if( Key.isDown(Key.RIGHT) ) { _x = _x + movedelta; } if( Key.isDown(Key.LEFT) ) { _x = _x - movedelta; } if( Key.isDown(Key.UP) ) { _y = _y - movedelta; } if( Key.isDown(Key.DOWN) ) { _y = _y + movedelta; } } } Select Control > Test Movie to test whether the movement works when you press the arrows on your keyboard.

step04

04. The code we just created sets up the class MO as a sub-class of the MovieClip class; that is to say, we’re using the existing MovieClip class and giving it some extra instructions. We create a variable called movedelta and give it a value of 10. This is the amount, in pixels, that the character will move each time a button is depressed. We also added four conditional statements inside a function. The function is special, as it’s built into the MovieClip class. onEnterFrame executes every time a frame is encountered in the movie. As our movie is running at 30fps, this function will execute 30 times a second. The conditional statements check each arrow key in turn to see if it is pressed down and if it is, the position of the character is updated on the X or Y axis, as appropriate.

Keep up with the latest tech news, reviews and previews by subscribing to the PC World newsletter.

Sam Hampton-Smith

Digital Arts Magazine
Topics: games, flash

Comments

Enzogames

1

Good tut but,

I wish there was another way to make the animations other than Adobes convoluted programs. Maybe its me but llustrator is hell, and flash is infuriating. I figure if I keep plugging away at the flash IDE I'll get it one day. Enough griping good tutorial :)

kockningdahy

2

sanzaki

this is a nicce game

Comments are now closed.

Best Deals on PCWorld

Digital VideoView all »
Digital CamerasView all »
NotebooksView all »
Desktop PCsView all »
TabletsView all »