命令预加载器跟踪 ActionScript 3 中的下载进度
如何命令预加载器跟踪下载进度?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听 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