Hi Everybody:

I'm having problems with my sliding menu / infinite menu (whatever you want to call it).

The movement from left to right works perfectly, it loops perfectly - but for some reason, some of the ActionScript I have attached to the buttons in the menu become disabled.

In this example, the buttons work while the menu is sliding to the left, but Buttons #1-5 are disabled when the menu is sliding to the right. (but the over states of all buttons work all the time)

I'm thinkin' it's got something to do with the loop...

This is a link to the problem site:
www.jesseshadoan.com/test

and this is the link to the tutorial i got the set up from:
http://www.kirupa.com/developer/mx/infinite.htm

And here's the AS by itself:

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


Any Suggestions?
Any help would be greatly appreciated.

Thank you so much.




Referring URLs
www.jesseshadoan.com/test
http://www.kirupa.com/developer/mx/infinite.htm