Android-AIR-Extensions is a set of three simple-but-useful little extensions, which allow you to use some Android sharing capabilities. It allows the following:

  • sharing content
  • send SMS
  • show a Toast message

Sample

public static function shareText(subject:String, text:String, chooserTitle:String) : void
public static function shareImage(imgPath:String, chooserTitle:String) : void
public static function toast(text:String, showForLong:Boolean = false) : void
public static function sendSMS(text:String, recipient:String=null) : void
public static function dispose() : void
public static function addEventListener(type:String, listener:Function) : void
public static function removeEventListener(type:String, listener:Function) : void
Air Native Extension, Android. URL.