I have a dynamic bezier curve created with two points as the anchors and the mouse is the control point
onEnterFrame = function () {
_root.createEmptyMovieClip ("line", 0);
with (_root.line){
lineStyle(1, 0x8F0707, 80);
moveTo(_root.ball1._x,_root.ball1._y);
curveTo(_root._xmouse,_root._ymouse,_root.ball2._x,_root.ball2._y);
}
What I want to do is attachMovieClip items dynamically to this line to make a menu that will respond to the mouse’s movement by pulling slightly towards it.
the line in the end movie will be invisible as well as the anchor points so all you’ll see is the menu items reacting to the mouse. pulling outward when the mouse is near
thanks