Hey guys, I'm trying to create draggable slider that will play my movie up to last frame while dragging, and on release move clip has to start playing backwards.

i have this code applied to my button

Code:
on (press){
startDrag(s, false, 0, 0, 150, 0);
mc1.goBack = false; 
mc1.play(); 
} 
on (release){ 
stopDrag();
mc1.goBack = true; 
}

Problem with this is, button drags movie clip with it. is there a way i can sepprate button and movie ?

i also have


Code:
MovieClip.prototype.rewind = function () { 
if (goBack && (_currentframe>1)) {
gotoAndStop (_currentframe-1);
}
}
applied to first frame of my scene. Everything works good, apart from button that drags movieclip with it.
I guess i'm doing this totally wrong ?