Scrollbar tutorial

Hi
I wanna make a scrollbar – nicely-looking and smoothly-moving alike. Something like this one: http://www.templatemonster.com/flash-templates/5109.html. Could anyone provide me with some tutorial or at least a fla file?

Thanks a lot

That scrollbar wasn’t made in flash it was already made on dreamwaver or front page and the flash animation was inserted in that frame

That is right that was not made with Flash, but an HTML editor. Anyway I wrote this for someone else who was asking about scrolls:
"Look up the scroll properties of the TextField Class.
Code could be like this:

upButton_btn.onPress = function() {
pressing = true;
movement = -1;
};
upButton_btn.onRelease = function() {
pressing = false;
};
downButton_btn.onPress = function() {
pressing = true;
movement = 1;
};
downButton_btn.onRelease = function() {
pressing = false;
};
_root.onEnterFrame = function() {
if (pressing==true) {
scrollWindow_txt.scroll = scrollWindow_txt.scroll + movement
}
};

//Each row of text has an index value. The top row is 1 and the one below is 2 and so on…
I hope this helps"
You need to create 2 buttons (Up and Down) and this will help you scroll your dynamic or input text field. I am not sure if that is what you are trying to scroll. If not you could create any animation and save it as swf. Then use loadMovie and load it into an empty movie clip, then mask that movie clip and control its location with actionscript the _x and _y properties of the MovieClip class. you could view something like that at <a href=“http://www.ustelcom.us/home1.html” target="_blank">LInk</a>

This question is asked a lot here. Please use the search button in the future before asking a question.