Text file Object color change

Please help!

I need to know if there is anyway to create a text file or something external, that I can set the properties of a symbol with. and what kind of action script that I could achive this goal with. if anyone knows of a tutorial it would be helpfull…

Thanks, This helps, at least I have a starting point now…

How would I load multiple colors into multiple symbols from one file?

Something that works like this it calls input information for multiple fields from a single .txt…

[FONT=Courier New]
[size=2]
loadText = new LoadVars();
loadText.load(“data.txt”);
loadText.onLoad = function() {
name.text = this.name;
email.text = this.email;
location.text = this.location;
};
[/size]
[/FONT]

Gary