After some time, I finally got a basic menu scrolling with easing but the problem I’m having now is if I click anywhere on the flash movie, it’ll scroll when it should only scroll on the arrow button that goes left and right.
Here’s the actionscript that’s attached to a movieclip
onClipEvent (mouseDown) {
_root.dragger.startDrag(this, 18, 7.5,553, 7.5);
}
onClipEvent (mouseUp) {
_root.dragger.stopDrag();
}
onClipEvent (enterFrame) {
xpos = Math.floor(_root.dragger._x);
//trace(_root.ties._x);
_root.ties._x = (6+_root.ties._x)+(((-xpos *2.9042357)-_root.ties._x) /15);
}
I KNOW it should be something simple, that lack of sleep is getting to me