ActionScript 3 AS3显示BytesTotal为兆字节(格式化)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3显示BytesTotal为兆字节(格式化)相关的知识,希望对你有一定的参考价值。

var bytesTotal:int = loaderInfo.bytesTotal;

var kbFormatted:String = Math.floor(bytesTotal/1024)+" KB";
var mbFormatted:String = (Math.floor(((bytesTotal/1024/ 1024)*100))/100)+" MB";

trace("kbFormatted: "+kbFormatted);
trace("mbFormatted: "+mbFormatted);

// For example, if bytesTotal = 5024322 the output would be ...
// kbFormatted: 4906 KB
// mbFormatted: 4.79 MB

以上是关于ActionScript 3 AS3显示BytesTotal为兆字节(格式化)的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3加载和显示外部SWF文件

ActionScript 3 AS3显示BytesTotal为兆字节(格式化)

ActionScript 3 As3:在小数点后显示一个固定位数的数字

ActionScript 3 AS3在右键菜单中显示SWF发布日期和时间

ActionScript 3 AS3 - 从本地驱动器加载并在闪存中显示图像

ActionScript 3 AS3在0,0处绘制一个点以显示DisplayObject的中心