then make sure this dot is in the middle

now add this to your player
onClipEvent (load) {
y = jump=0;
speed = 5;
}
onClipEvent (enterFrame) {
xmax = this.getBounds(_root).xMax;
xmin = this.getBounds(_root).xMin;
ymax = this.getBounds(_root).yMax;
if (Key.isDown(Key.RIGHT) && !_root.ground.hitTest(xmax+speed, _y, true)) {
_x += speed;
}
if (Key.isDown(Key.LEFT) && !_root.ground.hitTest(xmin-speed, _y, true)) {
_x -= speed;
}
if (_root.ground.hitTest(_x, ymax-(y/2), true)) {
jump = true;
y = 0;
} else {
y -= 2;
jump = false;
}
if (jump && Key.isDown(Key.SPACE)) {
y = 13;
}
_y -= y;
}
next to make your platforms make sure there ONLY BOXES!!!!!!!!!!!! or eles this wont work.... now that you made all of the platforms highlight them make it a movieclip and name it ground then click on the ground and hit the little arrow down at the bottom pointing up click that then you should see
"instance name" click that and make it say ground also... now once you have done that it should work.... try it out
*controls are move right is right arrow move left is left arrow jump is space*
thanks and if this helped you will you please rep me