Where is the Scrollbar UI?

http://www.kirupa.com/developer/mx2004/hide_scrollbar.htm

The above tutorial is exactly what i want but it talks about dragin th scroll bar component onto the stage. But Flash 2004 doesnt have the component so how can i achieve this?
Please Help?

there isn’t a scrollbar component in flash 2004. the textfield component has on when needed.

comicgeek has great custom scroller component’s on his site. do a search for his name and visit his website.

I’m using the scrollbar made by comic geek with the code from kirupa and i’m getting this error.

**Warning** Scene=Scene 1, layer=Layer 1, frame=1:Line 1: The identifier 'loadVars' will not resolve to built-in object 'LoadVars' at runtime.
     loadText = new loadVars();

Total ActionScript Errors: 1 	 Reported Errors: 1

try changing loadVars to LoadVars

yup

After doing that i tried publishing and the only way it works is when i do Flash 6, Actionscript 1.0

Is their a way to make it Flash 7 and Actionscript 2.0

Heres the AS i’m using.

loadText = new LoadVars();
 loadText.load("kirupa.txt");
 //creating the loadVarsText function
 loadText.onLoad = function() {
 		scroller.text = this.kirupatext;
 };