flash data integration:
I am having difficulty getting my dynamic text field to display external
HTML-formatted text. I can get non-HTML formatted text to appear by using the
following method:
Action script calling the external file: loadVariables("ExternalText.txt",
DynamicTextField.text);
In the properties inpector for my dynamic text field: Variable: Var2; Instance
Name: DynamicTextField
In my External.txt file: Var2=This is the text I want to display.
However, when I try to change my external text to HTML, I get a blank text
field. Here are the settings that DON'T work:
Action script calling the external file: loadVariables("ExternalText.txt",
DynamicTextField.htmlText);
Action script calling the external file: loadVariables("ExternalText.txt",
DynamicTextField.text);
In the properties inspector for my dynamic text field: Variable: Var2;
Instance Name: DynamicTextField; Render text as HTML: checked (true)
In my External.txt file: Var2=This is the <b>HTML</b> text I want to display.
In my External.txt file: Var2="This is the <b>HTML</b> text I want to display."
Any suggestions on why my HTML-formatted text does not appear when my
non-HTML-formatted text appears just fine?
Thanks in advance!