To get a slider I created to pan (L and R) a movie clip (timeline w/ buttons)

I am trying to add action script 2.0 to a slider that i created using [COLOR=#800080]http://www.kirupa.com/developer/mx/slider.htm[/COLOR] that slides a movie clip that is a timeline from left to right. In the timeline are (i)More… buttons that will reveal more information. I just need to know how to integrate the timeline into the code using as2 to make it slide when the slider is dragged… Help?

This is the action script that I have on the slider movie clip as stated in the above tutorial. But this is ALL the action script I have on EVERYTHING… I know I need more to make it pan the timeline but I dont know how to do it.

this.ratio=0 ;
dragger.onPress=function(){
this.startDrag(true,0,0,line._width,0);
this.onEnterFrame=function(){
ratio=Math.round(this._x*100/line._width) ;
}
}
dragger.onRelease=dragger.onReleaseOutside=stopDrag;

I really could just use a good tutorial that shows me how to link the image that im sliding to the slider bar. When the slider is moved to the right… the image flows left… toward the end of the timeline. When the slider is all the way right. The end of the timeline is shown. The timeline is bigger than the stage so the slider is on a line with years on it.

I know someone out there knows how to do this pleease i need your help!