Search tutorials
1. make lines inside and outside the workspace. Convert the to a movie clip with the regisration point in the middle. Give it an instance name of ground.
2.Make a character and convert it to a movie clip but have the regisration point to the top left corner. give it an instance name of man.
3 Next put this actionscript in the frame.
onEnterFrame = function () {
if (!_root.ground.hitTest(_root.man._x, _root.man._y+(man._height/2), true)) {
if (Key.isDown(Key.LEFT)) {
_root.ground._x += 10;
}
}
if (!_root.ground.hitTest(_root.man._x+man._width, _root.man._y+(man._height/2), true)) {
if (Key.isDown(Key.RIGHT)) {
_root.ground._x -= 10;
}
}
if (!_root.ground.hitTest(_root.man._x+man._width, _root.man._y+(man._height/2), true)) {
if (Key.isDown(Key.DOWN)) {
_root.ground._y -= 10;
}
}
if (!_root.ground.hitTest(_root.man._x, _root.man._y+(man._height/2), true)) {
if (Key.isDown(Key.UP)) {
_root.ground._y += 10;
}
}
};
and your done enjoy!!!!!!
| » Level Advanced |
|
Added: 2008-10-01 Rating: 3.88 Votes: 16 |
| » Author |
| this shows you how to make your character scroll with the screen!!! Email me for questions! |
| » 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!