Search tutorials
Hello and welcome to this tutorial these are simple steps to make someOne move in flash MX.
1.make a new flash movie.
2.draw a character convert it to a movie and give it the instants name player/
3.select the player and open the actions window.
4. add the following actionScript to player:
onClipEvent (enterFrame ) {
with (_root .player) {
// Controls Player Speed
mySpeed = 3;
// Controls how far the Player bounces off the wall after impact
myBounce = 3;
// keyboard controls
if (Key.isDown (Key.DOWN )) {
_y += mySpeed;
}
if (Key.isDown (Key.UP )) {
_y -= mySpeed ;
}
if (Key.isDown (Key.LEFT )) {
_x -= mySpeed;
}
if (Key.isDown (Key.RIGHT )) {
_x += mySpeed;
}
// detect if edges of the player is colliding with the Maze Walls
if (walls. hitTest (getBounds (_root ).xMax, _y ,true )) {
_x -= myBounce;
}
if (walls. hitTest (getBounds (_root ).xMin, _y ,true )) {
_x += myBounce;
}
if (walls. hitTest (_x ,getBounds (_root ).yMax, true )) {
_y -= myBounce;
}
if (walls. hitTest (_x ,getBounds (_root ).yMin, true )) {
_y += myBounce;
}
// detect if Maze is finished
if (_root .end .hitTest (_x ,getBounds (_root ).yMax, true )) {
_root .gotoAndStop (3);
}
}
}
SPECIAL:
if (hitTest(_level0.wall)==true) {
_x=_x-2;
}
now save movie and play! your done!!!
feel free to download my game and work on it some more cause im no were near done. if you do download it please put in walls and badGuys that you can kill and send it to furbanj@gmail.com ok? well thanks for looking at this tutorial.
» Level Intermediate |
Added: 2005-12-10 Rating: 2.6 Votes: 20 |
» Author |
NA |
» Download |
Download the files used in this tutorial. |
Download (0 kb) |
» Forums |
More help? Search our boards for quick answers! |