Search tutorials
Action Script
Yes, believe it or not, we are already to the action script part. Now we are going to add this action script to the Movie clip "ball". Here it is:
onClipEvent (keyDown) {
if (Key.isDown( key.LEFT)) {
_x-=10;
}
}
onClipEvent (keyDown) {
if (Key.isDown( key.RIGHT)) {
_x+=10;
}
}
onClipEvent (keyDown) {
if (Key.isDown( key.UP )) {
_y-=10;
}
}
onClipEvent (keyDown) {
if (Key.isDown( key.DOWN )) {
_y+=10;
}
}
Now, where it says "_y+=10", or "_x-=10" or something like that, the number ten is how many pixels the object will move. You can enlarge the number to make it move more, or shrink the number to move less.
Now the rest of the code is pretty self explanitory.
FINALLY, WE'RE FINISHED!!!!
Now that wasnt as hard as it sounds was it? If you have any problems, dont e-mail me. Download my File.| » Level Intermediate |
|
Added: 2002-01-03 Rating: 6 Votes: 106 |
| » Author |
| I consider myself a learning intermediate/advanced Flasher :). I have good skills in anime, graphics and action script. Im working towards expert, but that seems a long way away :) |
| » Download |
| Download the files used in this tutorial. |
| Download (2 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!