Table of Contents

All Events

This verb returns an AppleScript list of the names of all scheduled events ordered by scheduled date.

Usage:

all events

Examples:

set EventList to all events
 
repeat with ThisEventName in EventList
   write log "got event named: " & ThisEventName
end repeat