Triggers: Difference between revisions

No change in size ,  7 October 2016
m
no edit summary
mNo edit summary
mNo edit summary
Line 443: Line 443:


<source lang="javascript">
<source lang="javascript">
i = intent("android.intent.action.DIAL") // Create information exchange object Intent
i = intent("android.intent.action.DIAL"); // Create information exchange object Intent
                                           // with the action of DIAL
                                           // with the action of DIAL
i.data("tel:"+entry().field("Phone"))     // The data will be the phone number obtained
i.data("tel:"+entry().field("Phone"));    // The data will be the phone number obtained
                                           // from the field Phone
                                           // from the field Phone
i.send()                                 // Send the message
i.send();                                // Send the message
</source>
</source>