//第一桢
var self = this;
var my_xml:XML = new XML();
my_xml.ignoreWhite = true;
my_xml.onLoad = function(success) {
trace(success);
if (success) {
self.my_onLoad(this);
}
};
my_xml.load("../php/xml.php");
//my_xml.load("http://localhost/Flash&PHP/php/xml.php");
function my_onLoad(xml:XML) {
var temp_xml = xml;
var myText = _root.createTextField("Billows", 0, 100, 100, 200, 200);
myText.multiline = true;
myText.autoSize = true;
myText.text = temp_xml.firstChild;
}
//PHP代码:
echo "
- ddddddd
?>