Volume slider with "on mouse over" action

Hello all,

I have a volume slider bar in my flash project. Works very nicely, heres the code to reference the sound file:

stop();
sound1 = new Sound();
sound1.attachSound(“sound”);
sound1.start(0, 999999);

heres the code for the actual slider bar:

volume = int(slider._x);
_level0.sound1.setVolume(_level0.vol.volume);

and heres the code for the “drag” button:

on (press) {
startDrag(this, false, (GetProperty("…/track",_x)-GetProperty("…/track",_width)/2) + 0.5, GetProperty("…/track",_y), (GetProperty("…/track",_x)+GetProperty("…/track",_width)/2) - 0.5, GetProperty("…/track",_y));
}
on (release, releaseOutside) {
stopDrag();
}

Ok, now i want to add an “on mouse over” box with text in it to show up when the user rolls over the drag button, which i can do by editing the drag button, this works, however as the drag button is slid across the bar, so the box with text slides across in its also. Now my question is HOW DO I MAKE THE BOX WITH TEXT STAY FIXED AT A POINT WHILE THE USER SLIDES THE DRAG BUTTON TO ADJUST THE VOLUME??

I’d really appreciate any help in this.

Thanks