input field doesn't work?
I've got an input text field with a variable named "waarde". And a button which traces this variable:
Code:
knopje.onRelease = function() {
trace(waarde);
};
But when I enter "This is a test" and click the button this is traced:
Code:
<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="arial" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">This is a test</FONT></P></TEXTFORMAT>
I first though, maybe it's the render as html option, but that makes no difference. Why can't I get just "This is a test":scared: