Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML Newbie: Please help...

Status
Not open for further replies.

timBB

Programmer
Jan 31, 2006
1
US
How can I output a u with umlaut mark in my xml output? In otherwords, I want to enter the text directl in the xml file and have it output by Flash. What do I need to do to get it to display?

Here is what I have:
<?xml version="1.0"?>
<images>
<pic>
<image>images/1.jpg</image>
<caption>&Uuml; This won't output like it does in HTML</caption>
</pic>
</images>
 
Try these.
[tt]
<caption>&#xDC; This won't output like it does in HTML</caption>
<caption><![CDATA[Ü This won't output like it does in HTML]]></caption>
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top