Here you go, since I figure I'm going to have to show it all to you again anyway, here are all three of the snippets.
http://www.flashadvocate.com/cliente...av_slider.html
Code:
speed = 5;
onEnterFrame = function() {
this._x += (_root._xmouse-this._x+10)/speed;
}
http://www.flashadvocate.com/cliente...v_sliderW.html
Code:
onClipEvent(load)
{
xSpeed=0;
Speed=10;
wide=90
Stop=1.40;
this._width = slideW;
}
onClipEvent(enterFrame)
{
_x+=xSpeed;
xSpeed+=(_root._xmouse-_x)/Speed;
_width+=(_root._xmouse-_x)/wide;
xSpeed/=Stop;
slideW/=Stop;
}
http://www.flashadvocate.com/cliente..._sliderW2.html
Code:
onClipEvent(load)
{
xSpeed=0;
acc=20;
dec=1.15;
}
onClipEvent(enterFrame)
{
_x+=xSpeed;
xSpeed+=(_root._xmouse-_x)/acc;
xSpeed/=dec;
}
onClipEvent (enterFrame)
{
xdis = (this._x - _root._xmouse) / 9;
_x = this._x - xdis;
_xscale = xdis * 9;
}