awesomebeats
Technical User
Hey,
I use the following actionscript to grab some xml from a file and display is contents. The problem is that this node contains and entity call &text; and flash displays "&text;" not the value of the entity. How can I make flash display the value of the entity? Here's my script in flash and the xml is below. Thanx for your help!
testxml = new xml();
testxml.ignoreWhite=true;
testxml.load("test.xml"
;
testxml.onLoad = parse;
function parse() {
text = testxml.firstChild.firstChild.firstChild.nextSibling.firstChild.nodeValue;
}
stop();
awesomebeats
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE test[
<!ELEMENT test (subject*)>
<!ELEMENT subject (title, info, writ*)>
<!ELEMENT title (#PCDATA)>
<!ATTLIST title date CDATA #IMPLIED>
<!ELEMENT info (#PCDATA)>
<!ELEMENT writ (#PCDATA)>
<!ATTLIST writ age CDATA #IMPLIED>
<!ENTITY text "SHould put lots of text here cause that's what goes here!">
]>
<test>
<subject>
<title date="May 20, 1998">Juan Dumb Boy</title>
<info>Last seen robbing his mother at 1823 Stupid Ave, Anaheim. &text;</info>
<writ age="32">He's an old man for sure!</writ>
</subject>
</test>
I use the following actionscript to grab some xml from a file and display is contents. The problem is that this node contains and entity call &text; and flash displays "&text;" not the value of the entity. How can I make flash display the value of the entity? Here's my script in flash and the xml is below. Thanx for your help!
testxml = new xml();
testxml.ignoreWhite=true;
testxml.load("test.xml"
testxml.onLoad = parse;
function parse() {
text = testxml.firstChild.firstChild.firstChild.nextSibling.firstChild.nodeValue;
}
stop();
awesomebeats
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE test[
<!ELEMENT test (subject*)>
<!ELEMENT subject (title, info, writ*)>
<!ELEMENT title (#PCDATA)>
<!ATTLIST title date CDATA #IMPLIED>
<!ELEMENT info (#PCDATA)>
<!ELEMENT writ (#PCDATA)>
<!ATTLIST writ age CDATA #IMPLIED>
<!ENTITY text "SHould put lots of text here cause that's what goes here!">
]>
<test>
<subject>
<title date="May 20, 1998">Juan Dumb Boy</title>
<info>Last seen robbing his mother at 1823 Stupid Ave, Anaheim. &text;</info>
<writ age="32">He's an old man for sure!</writ>
</subject>
</test>