home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / zombietypocalypse.swf / scripts / classes / helper / Utilities.as < prev   
Encoding:
Text File  |  2008-09-15  |  612 b   |  18 lines

  1. package classes.helper
  2. {
  3.    public class Utilities
  4.    {
  5.        
  6.       
  7.       public function Utilities()
  8.       {
  9.          super();
  10.       }
  11.       
  12.       public static function convertTimeToString(param1:Number) : String
  13.       {
  14.          return String(Math.floor(param1 / 60000) > 9 ? Math.floor(param1 / 60000) : "0" + Math.floor(param1 / 60000)) + ":" + (Math.floor(param1 / 1000) % 60 <= 9 ? "0" + Math.floor(param1 / 1000) % 60 : Math.floor(param1 / 1000) % 60) + ":" + (Math.floor(param1 / 10) % 100 <= 9 ? "0" + Math.floor(param1 / 10) % 100 : Math.floor(param1 / 10) % 100);
  15.       }
  16.    }
  17. }
  18.