My program goes through an XML file and gets a particular
value. First off, I know that this script below works because the
txtReport prints out the exact information I need. However, when I
try to add it into my combo box, it gives me: [type function],
[type function], repeated over and over again.
for (i=0; i < BaseNode.childNodes.length; i++) {
if (BaseNode.childNodes
.nodeName == "quick-look") {
var thisName:String = BaseNode.childNodes.lastChild;
txtReport.text += thisName + "\r";
cboStorms.addItem(thisName);
}
}
What in the world am I missing this time?
Thanx,
Tim