exact: follow the horizontal position of the mouse exactly

onClipEvent (enterFrame) {
x = _parent._xmouse;
// _parent._xmouse gives us the position of
// the mouse relative to the stage the clip is in.
// In this case, the main stage, which can also
// be targetted using _root

}