Home Tutorials Forums Articles Blogs Movies Library Employment Press

Go Back   ActionScript.org Forums > ActionScript Forums Group > ActionScript 3.0

Reply
 
Thread Tools Rate Thread Display Modes
Old 08-09-2012, 08:40 AM   #1
bryanbelle
Registered User
 
Join Date: Aug 2012
Posts: 9
Default XML line break

Hi,

I have a new problem with my XML parsed to AS3 textfield. Seems like there is a double spacing line break when displayed on the Flash AS3 screen from the XML file. below is my code in the XML, i did try <br /> but to now avail since the <br /> tag will display itself on the textfield.

XML code:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<pages>
<page pTitle="What Causes Back Pain?">
Poor posture
Strenuous activities at home or at work
Lifting, carrying, pushing or pulling incorrectly
Standing or bending down for long periods
Twisting or bending awkwardly
Sitting in a hunched position for long periods without taking a break
Muscle tension and or over-stretching
</page>
</pages>


And this my AS3 Code:
var myXML:XML = new XML();
var XMLURL:String = "xxxx.xml";
var myXMLURL:URLRequest = new URLRequest(XMLURL);
var myLoader:URLLoader = new URLLoader(myXMLURL);
myLoader.addEventListener("complete", xmlLoaded);

function xmlLoaded(event:Event):void
{
myXML = XML(event.target.data);
titleText.text=myXML.page[0].@pTitle;
descText.htmlText=myXML.page[0];
}

Any help would be much appreciated.

Thanks,

BB
bryanbelle is offline   Reply With Quote
Old 08-09-2012, 08:39 PM   #2
thekchunter
Registered User
 
Join Date: Aug 2012
Posts: 6
Post

You should be using CDATA for any kind of copy text.

Code:
		<description><![CDATA[<p>This is where your text goes.<br />You should be able to use breaks as well.</p>]]></description>
thekchunter is offline   Reply With Quote
Reply


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:16 AM.

///
Follow actionscriptorg on Twitter

 


Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Ad Management plugin by RedTyger
Copyright 2000-2013 ActionScript.org. All Rights Reserved.
Your use of this site is subject to our Privacy Policy and Terms of Use.