我一直在使用 Flash 功能来用外部数据填充动态文本变量。该脚本运行良好,只是现在运行速度非常慢 - 大约 30 秒左右。
myData = new LoadVars();
System.useCodepage = true;
myData.load("get_content.php?id="+_root.id); //get external content
myData.onLoad = function(success){
if (success){
my_dynamic_text.htmlText = this.content; //attach the read content to the my_dynamic_text varialble
}
}
你知道问题可能出在哪里吗?