How was this done?

first of i’m wondering how the “srolling menu” (the one on the bottom) was made here

i have one pretty much like it here under wallpapers. But mine doesn’t stop the scrolling function when it’s at the ends, and then reactivate it.

onClipEvent (load){
	xcenter=300;
	speed=1/25;
}
onClipEvent (enterFrame){
	var distance=_root._xmouse-xcenter;
	_x+=(distance*speed);
}
onClipEvent (enterFrame){
	var distance=_root._xmouse-xcenter;
	_x+=(distance*speed);
	if (_x>0) _x = 0;
	if (_x<-1285) _x = -1285;
}
onClipEvent (mouseMove) {
	if (this.hitTest(_root._xmouse, _root._ymouse, false)) {
		speed = 1/25;
		} else {
			speed = 0;
			}
}

what have i missed?

  • how do i make a animated preloader?!?! :drool:

anyOne :?)