vote up 0 vote down star
1

I have a string

var s:String = "This is a line \n This is another line.";
this.txtHolder.text = s; //.text has \n, not a new line

and i want to put it into a text area, but the new line character is ignored. How can i ensure that the text breaks where i want it to when its assigned?

flag

52% accept rate
What is txtHolder? – James Ward Apr 8 at 0:20

5 Answers

vote up 2 vote down

on flex, while coding '\n' is working well.. on mxml or any xml to define a line just use '
' line entity.. i mean :

lazy
fox

gives us

lazy
fox

link|flag
vote up 0 vote down

Try

"This is a line {\n} This is another line."

Alternatively, use the htmlText attribute and use

"This is a line <br> This is another line."
link|flag
vote up 0 vote down

It should work or at the very least < br \> (without the spaces before the "br") should work if you are using htmlText.

I was using XML to fill in the TextArea and since I'm not entirely sure how to use HTML inside of XML (they mention that I should wrap it with CDATA tags) but I just did a simple

txt.replace("\\n", "<br/>");

Perhaps there's a better way to go about it but this works out nicely.

EDIT: I had a space after the "br"

link|flag
vote up 0 vote down

Hi, I just tested following code:

<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
	creationComplete="onComplete();">
	<mx:Script>
		<![CDATA[
			private function onComplete():void {
				var s:String = "This is a line \n This is another line.";
				this.txtHolder.text = s;
			}
		]]>
	</mx:Script>
	<mx:TextArea id="txtHolder" />
</mx:WindowedApplication>

and with mx:Text

<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
	creationComplete="onComplete();">
	<mx:Script>
		<![CDATA[
			private function onComplete():void {
				var s:String = "This is a line \n This is another line.";
				this.txtHolder.text = s;
			}
		]]>
	</mx:Script>
	<mx:Text id="txtHolder" />
</mx:WindowedApplication>

Both are working just fine. Maybe you're using mx:TextInput or mx:Label?

link|flag
vote up 0 vote down

not {\n} but {'\n'}

link|flag

Your Answer

Get an OpenID
or

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