Skip to content

Instantly share code, notes, and snippets.

@marchbold
Last active January 23, 2020 22:50
Show Gist options
  • Save marchbold/54e7f1ddcdfb8475086a6a61a647de15 to your computer and use it in GitHub Desktop.
Save marchbold/54e7f1ddcdfb8475086a6a61a647de15 to your computer and use it in GitHub Desktop.
Using the Share extension to send an SMS using the UI
if (Share.service.sms.isSMSSupported)
{
var sms:SMS = new SMS();
sms.address = "0444444444";
sms.message = "Testing SMS";
Share.service.sms.sendSMSWithUI( sms );
}
// com.distriqt.Share
@marchbold
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment