I am trying to dynamically create an xml list.. however when I add in cdata tags it give me an error saying tags must be terminated, even though I'm not using those. It seems like it is trying to read the cdata tags as tags.
var addList:XMLList = new XMLList( "" + "" + personName + "" + "" + personTitle + "" + "" + personEducation + "" + "" + personBio + "" + "")
I read somewhere you have to escape characters, but not sure exactly where.