Flash - 缓慢加载外部文件

发布于 2024-10-10 00:32:12 字数 469 浏览 1 评论 0原文

我一直在使用闪存功能,以便用外部数据填充动态文本变量。该脚本运行良好,但现在运行速度非常慢 - 大约 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉宸 2024-10-17 00:32:12

滚动条 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");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文