Operator Type:
Operator Scope of Action:
Operator Purpose:
Operator First Added:
Operator Altered:
Function [other Function type actions]
Item [operators of similar scope]
Data manipulation [other Data manipulation operators]
Baseline
notify(headline[, details, deliveryTime ])
notify() lets notes post notifications to the host Mac's User Notification Center.
headline is a string or string expression, and will be the headline of the notification.
notify("Hello world");
The optional details is another string or string expression, and provides an explanation of the notification.
notify("Hello world", "Some descriptive text");
The optional deliveryTime is a date or date expression that represents a delivery time in the future; if this argument is omitted or is already past, the notification is shown immediately.
notify("Hello world", "Some descriptive text",date("now + 1 hour"));