Hello
I have this code:
this.ratio=2800;
dragger.onPress=function(){
this.startDrag(true,0,0,line._width,0);
this.onEnterFrame=function(){
ratio=Math.round(this._x*3200/line._width+2800);
}
}
dragger.onRelease= function(){
dragger.onreleaseOutside=stopDrag;
dragger.onRelease=stopDrag;
}
It moves a silder up and down from 2800 to 6000. As the slider moves up and down, I want to move across the frames of a seperate movie clip. I would reall appreciate any help / pointers in the right direction. Especially as I have a scary boss!