home *** CD-ROM | disk | FTP | other *** search
- package classes.helper
- {
- public class Utilities
- {
-
-
- public function Utilities()
- {
- super();
- }
-
- public static function convertTimeToString(param1:Number) : String
- {
- 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);
- }
- }
- }
-