home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2012 January / ME_2012_01.iso / Galileo-Video / system / ChromeLinux.swf / scripts / mdm / InternalSystem.as < prev   
Encoding:
Text File  |  2010-11-16  |  640 b   |  37 lines

  1. package mdm
  2. {
  3.    public class InternalSystem
  4.    {
  5.       public function InternalSystem()
  6.       {
  7.          super();
  8.       }
  9.       
  10.       public function get screenHeight() : Number
  11.       {
  12.          return 1200;
  13.       }
  14.       
  15.       public function get macVerString() : String
  16.       {
  17.          return "";
  18.       }
  19.       
  20.       public function get winVerString() : String
  21.       {
  22.          return "";
  23.       }
  24.       
  25.       public function get screenWidth() : Number
  26.       {
  27.          return 1600;
  28.       }
  29.       
  30.       public function get linVerString() : String
  31.       {
  32.          return "linux";
  33.       }
  34.    }
  35. }
  36.  
  37.