[ActionScript 3.0] AS3 时间格式化方法

时间:2022-08-25 08:57:32
 /**
* 格式化时间,格式 00:00:00
* @param total 总时间(毫秒)
*/
function getFormatTime(total:uint):String
{
if (total/1000 < 60 && total/1000 >0) {
var s0:uint = total / 1000 >> 0;
return s0 < 10 ? "00:0" + s0.toString() : "00:" + s0.toString();
} else {
var h:uint = (total / 3600000) >> 0;
var m:uint = ((total -h*3600000)/60000)>>0;
var s:uint = ((total -h*3600000 - m*60000)/1000)>>0;
var hh:String = h < 10 ? "0" + h:h.toString();
var mm:String = m < 10 ? "0" + m:m.toString();
var ss:String = s < 10 ? "0" + s:s.toString();
var arr:Vector.<String> = new Vector.<String>();
(h > 0) ? arr.push(hh):null;
(h > 0|| m > 0 ) ? arr.push(mm) : null;
(h > 0|| m > 0 || s > 0 ) ? arr.push(ss) : null;
return arr.join(":");
}
}

[ActionScript 3.0] AS3 时间格式化方法的更多相关文章

  1. &lbrack;ActionScript 3&period;0&rsqb; AS3 时间日期格式化DateTimeFormatter类的运用

    import flash.globalization.DateTimeFormatter; var _timeFormatter:DateTimeFormatter; var _dateFormatt ...

  2. &lbrack;ActionScript 3&period;0&rsqb; AS3虚线绘制方法

    import flash.geom.Point; import flash.display.MovieClip; import flash.display.Graphics; var mc:Movie ...

  3. 在 Flash ActionScript 2&period;0 中调用 Javascript 方法

    本篇文章由:http://xinpure.com/call-the-javascript-method-in-flash-actionscript-2-0/ 在 Flash ActionScript ...

  4. Oracle中查询当前时间、时间格式化方法

    Oracle中如何获取系统当前时间 select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;  ORACLE里获取一个时间的年.季.月.周. ...

  5. &lbrack;ActionScript 3&period;0&rsqb; as3处理xml的功能和遍历节点

    as3比as2处理xml的功能增强了N倍,获取或遍历节点非常之方便,类似于json对像的处理方式. XML 的一个强大功能是它能够通过文本字符的线性字符串提供复杂的嵌套数据.将数据加载到 XML 对象 ...

  6. &lbrack;ActionScript 3&period;0&rsqb; AS3&period;0 动态加载显示内容

    可以将下列任何外部显示资源加载到 ActionScript 3.0 应用程序中: 在 ActionScript 3.0 中创作的 SWF 文件 — 此文件可以是 Sprite.MovieClip 或扩 ...

  7. javascript 时间格式化方法

    对jquery进行扩展的方法: //对时间格式化(jquery方法扩展) Date.prototype.Format = function (fmt) { //author: meizz var o ...

  8. &lbrack;ActionScript 3&period;0&rsqb; AS3&period;0 生成xml方法之一

    var type:Array = ["type0", "type1", "type2"]; var property:Array = [[& ...

  9. &lbrack;ActionScript 3&period;0&rsqb; AS3&period;0 给flash事件传递参数的方法

    有时我们想要给flash内置的事件(比如MouseEvent)传递参数,这时我们可以用到下面的方法. import flash.events.MouseEvent; mc.addEventListen ...

随机推荐

  1. Mybatis配置文件

    XML 映射配置文件 MyBatis 的配置文件包含了设置(settings)和属性(properties)信息. properties 这些属性都是可外部配置且可动态替换的,既可以在典型的 Java ...

  2. logrotate机制与原理&lbrack;转载&rsqb;

    http://blog.lightxue.com/how-logrotate-works/ 日志实在是太有用了,它记录了程序运行时各种信息.通过日志可以分析用户行为,记录运行轨迹,查找程序问题.可惜磁 ...

  3. 【Html5】Html5新特性Notification实现桌面消息推送(2016-05-25)

    序:最近工作使用WorkTile,发现使用Chrome浏览器的时候如果有任务下发给我则会在桌面右下角提示(当前浏览器为最小化模式).感觉这个东西蛮有意思的,感觉可以给用户更好的体验,于是乎就查询了一下 ...

  4. BaseAdapter以及对ListView的优化(转)

    背景 对于ListView.GridView.Gallery.Spinner等等,它是它们的适配器,直接继承自接口类Adapter的,使用BaseAdapter时需要重写很多方法,其中最重要的当属ge ...

  5. HDU 2498 Digits

    水题.题目这样定义的,另f(x)为x有几位,x[i]=f(x[i-1]); 求最小的i使得x[i]==x[i-1] #include<cstdio> #include<cstring ...

  6. Linux下 开启防火墙端口

    命令行输入: vi /etc/sysconfig/iptables 将 -A INPUT -m state --state NEW -m tcp -p tcp --dport 端口号 -j ACCEP ...

  7. 查看memcached进程

  8. 关于WARN Dispatcher&colon;68 - Could not find action or result报错

    出现这个错 00:03:37,142 WARN Dispatcher:68 - Could not find action or result: /crm/linkMan_addLinkMan.act ...

  9. Django之视图Views

    视图 视图接受Web请求并且返回Web响应 视图就是一个python函数,被定义在views.py中 响应可以是一张网页的HTML内容,一个重定向,一个404错误等等 响应处理过程如下图: URLco ...

  10. php--------对象&lpar;object&rpar; 与 数组&lpar;array&rpar; 的转换

    php开发中常常用到数组,sql数据都是数组,数组和对象用的也是比较多的,常常相互转化,数组是PHP的灵魂,非常强大,面向对象编程也是挺方便的. /** * 数组 转 对象 * * @param ar ...