The Infinite Menu - ON DRAG

Hi Peeps,

first time poster eeeek!

I’m looking to create an infinate menu BUT navigating my menu from left to right using drag rather than the position of the mouse.

If there’s any links or tutorials around Pleeeeese let me know.

Hope this makes sense.

Thanks in advance

onClipEvent (load)
{
xcenter=150;
speed=1/10;
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
if (_x > 0) _x=-300;
if (_x < -300) _x=0;
}