Anybody know how to add end points to the infinite menu. In other words make it a finite menu that scrolls by mouse movement. Even better would be some scroll with easing.
if(_root.yourscrollingclip._x > 900){
_root.yourscrollingclip._x = 900
}
if(_root.yourscrollingclip._x < -900){
_root.yourscrollingclip._x = -900
}
_root.yourscrollingclip.yourscrolliingfunction()
?
Thanks mlk. I will give it a whirl.