動的テキスト変数に外部データを入力するために、フラッシュ機能を使用しています。スクリプトは正常に動作しますが、実行速度が非常に遅くなりました (約 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
}
}
どこに問題があるか知っていますか?