Ok check out the SWF of this project in progress:
http://www.johncliffordtaylor.com/pat/test.html
If you play around with the volume scroll in the middle of the stage you will notice that while its MOSTLY working ok it’s not too hard to make it kind of mess up and when you move the mouse off the scroll the bar follow the mouse well outside the range of the scrolled. Here is the action script attached to the scroll bar guys:
[COLOR=green]The MovieClip that holds the slider elements is instance named to: [/COLOR][COLOR=red]slider[/COLOR]
[COLOR=green]The MovieClip that holds the small bar on the slider is instance named to: [/COLOR][COLOR=red]control[/COLOR]
slider.control.onPress = function() {
startDrag(this, false, this._x, -100, this._x, 0);
}
slider.control.onRelease = function() {
stopDrag();
}
Thx for looking it over and helping out
oneLove
JT