|
I've got an xml document set up, that loads from a .swf. It works well, except for number characters and special characters.
It seems like it should be simple to do, but how do I make it so that I can insert actual numbers into an .xml document so that they appear normally?
For example, I would like for the text to read: "3d Images" (without quotes). However, all that shows up in my .swf after the .xml document has been loaded is "d Images."
can someone help me out? Here is how I've set up the variables that are loaded into my swf:
<?xml version="1.0" encoding="UTF-16"?>
<icons>
<icon image="http://www.webmaster-talk.com/images/Subsalt_E_P_Partnerships.png" tooltip="3D Images" content="Text Copy.">
</icon>
</icons>
|