Category Archives: Uncategorized

Adobe Air Native Extension System Properties IOS / Android

New update on the as3NativeAlert and my older post:.

Added support for the SystemProperties class for IOS.

Available parameters for IOS:

  • os – like in Capabilities
  • UID – the UDID of the device
  • name – the name of the device
    • Usage:

      if(SystemProperties.isSupported()){
      	var dictionary:Dictionary = SystemProperties.getProperites(); 
      	for (var key:String in dictionary) 
      	{ 
      		var readingType:String = key; 
      		var readingValue:String = dictionary[key]; 
      		trace(readingType + "=" + readingValue); 
      	} 
      	dictionary = null;
      }