Title : Simple Flash Scroller
Usage : Flash 5, Flash MX
Comments : This movie has simple script which works Movie Clip position. When mouse over the buttons the movie clip moves to particular position making scroll. The scroll works w.r.t the width of the images added to the movie clip position, making accelerating scroll.
Description : here are the steps:
1. Create a movie clip(mc1) containing images one after other to scroll. Place this movie clip on the center of the stage.

2. Add new layer(action), then type action "xpos=160;" in the key frame - this is the starting position of mc1.
3. Add buttons w.r.t. to number of images.
4. Now take a new movie clip(control) add the below script to it.

onClipEvent(enterFrame){
startpos=_parent.mc1._x; // identifying the starting position of movie clip
newpos=_parent.xpos-startpos; //difference between the old position and new one.
_parent.mc1._x=startpos + (newpos/8); //dividing till new position with accelerating effect
}
5. Now add the below script to every button. Change the "xpos" value(like 160, 90, 20, -20.....) for particular button which is associate with the scrolling images, so that the movie clip moves to new position.
on(rollOver){
xpos=160;
}
Thanks for reading.