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
}
}
你知道问题可能出在哪里吗?
I've been using flash functionality in order to fill in dynamic text variable with an external data. The script works fine, except that now runs very slow - around 30 seconds or so.
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
}
}
Do you know where might be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
滚动条 UIScrollBar 只是以图形方式添加到文本区域组件(my_dynamic_text)中 - 自动上下滚动。除了整个代码之前的唯一一行之外,没有其他 onEnterFrame 操作或循环:
System.security.allowDomain("http://mydomain.com");
The scrollbar UIScrollBar is just added to the textarea component(my_dynamic_text) graphically - to scroll it up and down automatically. No other onEnterFrame actions or loops except the only line before the whole code:
System.security.allowDomain("http://mydomain.com");