package{ import flash.xml.XMLDocument; import flash.xml.XMLNode; import flash.xml.XMLNodeType; public class pXML{ private var xDoc:XMLDocument; function pXML(x:XML){ xDoc = new XMLDocument(); xDoc.ignoreWhite = true; xDoc.parseXML(x.toXMLString()); } public function xmlDocument():XMLDocument{ return xDoc; } } }