Hi all,
I have a math problem I think.
I want a ball to bounce forward and then backward in an ark.
I have it bouncing forward in the ark and stopping where I want it to, but then I carn’t get it to bounce back in the same way.
[AS]
var xspeed = 7;
var yspeed = 10;
ball_mc._x = 10;
ball_mc._y = 300;
drag = .98;
gravity = .2;
bottom = 300;
one_btn.onRelease = function() {
ball_mc.onEnterFrame = function() {
trace(this._x)
this._x += xspeed;
this._y -= yspeed;
gravity -= .05;
yspeed = yspeeddrag+gravity;
xspeed = xspeeddrag;
if (this._y>=bottom) {
yspeed = -yspeed;
xspeed = -xspeed;
}
};
};
[/AS]