I finally had a chance to revisit this and this is what I have so far thats a bit of a hybrid from these two sites I came across:
http://www.emanueleferonato.com/2007/09/01/controlling-a-ball-like-in-flash-elasticity-game-tutorial/http://board.flashkit.com/board/showthread.php?t=541342First download the source file from the Emanuele Feronato location. Test the movie and you will see how it has the elasticity effect. After you paste the following modified code in the first frame of the main timeline, youll notice the change in behavior. The ball will be moving in the opposite direction of the mouse.
I have yet to figure out the bouncy effect.
COPY AND PASTE THIS CODE:
attachMovie("newmouse","ne
wmouse",_r
oot.getNex
tHighestDe
pth());
attachMovie("circle","circ
le",_root.
getNextHig
hestDepth(
),{_x:250,
_y:200});
attachMovie("crosshair","c
rosshair",
_root.getN
extHighest
Depth());
attachMovie("ball","ball",
_root.getN
extHighest
Depth());
Mouse.hide();
kGravRadius = 100;
kAvoidPush = 8;
friction = 0.9;
speed_scale = 0.1;
xspeed = 0;
yspeed = 0;
newmouse.onEnterFrame = function() {
this._x = _root._xmouse;
this._y = _root._ymouse;
};
crosshair.onEnterFrame = function() {
this._x = _root._xmouse;
this._y = _root._ymouse;
dist_x = this._x-circle._x;
dist_y = this._y-circle._y;
distance = Math.sqrt(dist_x*dist_x+di
st_y*dist_
y);
if (distance>45) {
angle = Math.atan2(dist_y, dist_x);
this._x = 250+15*Math.cos(angle);
this._y = 200+15*Math.sin(angle);
}
};
ball.onEnterFrame = function() {
//----------------------- push-away code
this._x = 250;
this._y = 200;
var dx = - (_root._xmouse - this._x);
var dy = - (_root._ymouse - this._y);
var dist = Math.sqrt(dx*dx+dy*dy);
if (dist < kGravRadius) {
var scale = dist/kGravRadius;
scale *= scale;
scale = 1-scale;
this._x += kAvoidPush*scale*dx/dist;
this._y += kAvoidPush*scale*dy/dist;
}
//-----------------------
};