Question : Move and Wobble, Globz effect. Layers

Please see: http://globz.com/

When you move the mouse around the layers (Sky, Background, Characters) move left, right, up, down away from the centre.

Also there seems to be a wobble effect when you stop moving the mouse.

Any ideas on how to create this or at least get started??

I've been looking at keywords like "avoid" in flashkit, but I cant find anything to get me started

Thanks,

B.

Answer : Move and Wobble, Globz effect. Layers

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=541342

First 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","newmouse",_root.getNextHighestDepth());
attachMovie("circle","circle",_root.getNextHighestDepth(),{_x:250, _y:200});
attachMovie("crosshair","crosshair",_root.getNextHighestDepth());
attachMovie("ball","ball",_root.getNextHighestDepth());
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+dist_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;
    }
//-----------------------

      };
Random Solutions  
 
programming4us programming4us