Text scroller problem

i did a text scroller that dynamically load a text file

my main objective is to display different font size and font type in the text area (i already did that)

now the problem is my scrollbar is now working at all

can anyone help

use the LoadVars object …

sample = new LoadVars();
sample.load("textsample.txt");
sample.onLoad = function(success) {
	success ? aa.htmlText = this.sample : trace("error");
}

there’s a tutorial on the site <a href=“http://www.kirupa.com/developer/mx/dynamic_scroller.htm” target=“blank”>here</a> :wink:

=)

thanks alot kax

you’re welcome :wink: =)