Dynamic scroller

Hello
Is it possible to add 3 scroller to a movie in diferent page that is
geting the text from there own text files. I have one scroller now but I would like to add 2 more but don’t know how to do it.

Thanks that what I did worked ok, each scroller has to have a name scroller 1.2.3., now to try to get rid of the error that I get when testing movie.

Warning Symbol=scroll, layer=actions, frame=1:Line 1: Case-insensitive identifier ‘loadVars’ will obscure built-in object ‘LoadVars’.
loadVarsText = new loadVars();

Warning Symbol=scroll 2, layer=actions, frame=1:Line 1: Case-insensitive identifier ‘loadVars’ will obscure built-in object ‘LoadVars’.
loadVarsText = new loadVars();

Total ActionScript Errors: 2 Reported Errors: 2

loadVarsText<-this is a no no…
[write you code like this for loadVars Object]



my_var = new LoadVars();
my_var.load("my_Text.txt");
my_var.onLoad = function(success) {
	if (success) {
		my_var = my_Text.txt;
		trace("loaded");
	} else {
		trace("error");
	}
};



cheers