RE: [Flashcoders] Scroll Bar formula problem

2007-06-25 Thread Jesse Graupmann
Using 4 movieClips; mask, content, handle, scrollbar handle.onPress = mx.utils.Delegate.create ( this, startScroll ); handle.onRelease = handle.onReleaseOutside = mx.utils.Delegate.create ( this, stopScroll ); function startScroll() { var l = scrollbar._x; var t = scrollbar._y;

Re: [Flashcoders] Scroll Bar formula problem

2007-06-25 Thread O. Fouad
thanks jesse this worked like a charm... ;-) On 6/25/07, Jesse Graupmann [EMAIL PROTECTED] wrote: Using 4 movieClips; mask, content, handle, scrollbar handle.onPress = mx.utils.Delegate.create ( this, startScroll ); handle.onRelease = handle.onReleaseOutside = mx.utils.Delegate.create (