I am working with Actionscript 3 in Flash, and I have a dynamic text field, instance called "textField" inside an instance of movie clip "mcpoo" and a keyframe with actionscript:
addEventListener(Event.ENTER_FRAME, myfunc);
function myfunc(e:Event):void{
mcpoo.textField.text = "this is a test string";
}
When I set the text field to a default value via text tool, e.g., "asdf" and test the movie, the text will change to include ONLY the chars in the default value, stripping out the rest. "this is a test string" is displayed as "ssass".
Why the good gawddam would it do something like this? As a corollary, how can I work around this or avoid it?