I'm using the loadVars() method to load a textfile into my flash file. When I trace the message it all works perfect, but displaying the textfile contents into my dynamic textfile failes.
don't give your textbox a variable name, give it an instance name (something different than your loadvars object name), like data_txt
then in your onLoad event put this line:
ActionScript Code:
loadHandler = function(data){if(data){trace(this.text);
data_txt.text=this.text;
}//.... the rest of your code
that should do it for you.
__________________
tg
---
what the hell was i thinking?