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
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.
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.