Well, how about that! var kids = xmlData.children(); // gets me the CDATA content without the <![CDATA[ or ]]> var kidscdata:String = kids[0].toString();
I was doing this RegExp, which also worked, but isn't necessary:
var altered:String = kidscdata.replace(new
RegExp("(^\<!\[CDATA\[)(.+)(\]\]\>)", "gi"), "$2");
Thanks everyone!
- Michael M.
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

