
Код:
_global.getnews = function (h:String) {
var xml:XML = new XML ();
sendXML = new XML ("&number=" + escape (h));
xml.ignoreWhite = true;
xml.onLoad = function (flag:Boolean) {
if (flag) {
_root.tt = this.firstChild.firstChild.firstChild.nodeValue;
}
};
sendXML.sendAndLoad ('getnews.php', xml);
};
_root.mc.onRelease = function () {
heade = "2008-06-27";
_global.getnews (heade);
};