I'm trying to set the text of a TextArea with some text containing forbidden characters. I'm trying to set the text as <meta charset="utf-8"> and there is of course a problem with the "'s. I think it's something like this <meta charset=&#0034utf-8&#0034;>, but obviously this doesn't work.

link|improve this question

Sorry if I am misunderstanding your question ... does <mx:TextArea id='aTextArea' text='<meta charset="utf-8">' /> not work? – Sai Jul 1 '11 at 18:29
feedback

1 Answer

up vote 2 down vote accepted

Not quite sure if you mean you are having trouble with setting text to a textarea when the text contains single quote character. You need to escape the quote or you could enclose the string in double quotes.

Take a look at http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_03.html#445094

link|improve this answer
Thanks :) I knew it was something simple. – RapsFan1981 Jul 1 '11 at 19:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.