Triggers: Difference between revisions

8 bytes removed ,  6 October 2016
m
no edit summary
mNo edit summary
mNo edit summary
Line 450: Line 450:


<source lang="javascript">
<source lang="javascript">
i = intent("android.intent.action.INSERT")                  // Create Intent object with action Create Appointment
i = intent("android.intent.action.INSERT")                  // Create Intent object for Create Appointment
i.data("content://com.android.calendar/events")            // For INSERT event, data contains Google Cal URI
i.data("content://com.android.calendar/events")            // For INSERT event, data contains Google Cal URI
i.extra("title", entry().field("Title"))                    // Get name of event from the field Title
i.extra("title", entry().field("Title"))                    // Get name of event from the field Title