Search tutorials
Make a movie clip and then go to actions and write
onClipEvent (load) {
moveSpeed = 11;
}
onClipEvent (enterFrame) {
if (Key.isDown (Key.RIGHT)) {
this._x += moveSpeed;
} else if (Key.isDown (Key.UP)) {
this._y -= moveSpeed;
} else if (Key.isDown (Key.DOWN)) {
this._y += moveSpeed;
} else if (Key.isDown (Key.LEFT)) {
this._x -= moveSpeed;
}
}
on the second line theres move speed you can set it to anything you want.
HAVE FUN AND ENJOY
| » Level Basic |
|
Added: 2004-12-11 Rating: 5.62 Votes: 13 |
| » Author |
| Flash |
| » Download |
| Download the files used in this tutorial. |
| Download (0 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!