命令预加载器跟踪 ActionScript 3 中的下载进度

发布于 2024-10-12 03:55:24 字数 442 浏览 2 评论 0原文

如何命令预加载器跟踪下载进度?

 public function loadImage(filename:String):void
        {
            // show the preloader
            preloader.visible = true;

    // set the source to the UILoader to the full size image to load and display

            addChild(preloader);

            // 
            var loadWindow:UILoader;    
        preloader.trackLoading("LOADING: " + (loader*100).toFixed(0) + "%");


        }

How can I command the pre-loader to track the progress of the download?

 public function loadImage(filename:String):void
        {
            // show the preloader
            preloader.visible = true;

    // set the source to the UILoader to the full size image to load and display

            addChild(preloader);

            // 
            var loadWindow:UILoader;    
        preloader.trackLoading("LOADING: " + (loader*100).toFixed(0) + "%");


        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

谁人与我共长歌 2024-10-19 03:55:24

听 bytesLoaded & UILoader 的 bytesTotal 属性

检查此链接以获取有关 UILoader 的更多信息,页面底部有示例。
http://help.adobe.com/en_US /FlashPlatform/reference/actionscript/3/fl/containers/UILoader.html

Listen to the bytesLoaded & bytesTotal properties of the UILoader

Check this link for more info on the UILoader, there are examples at the bottom of the page.
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/fl/containers/UILoader.html

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