https://github.com/miyako/4d-plugin-user-notification
Send Mac OS X Mountain Lion Local User Notification from 4D.
https://github.com/miyako/4d-plugin-user-notification
4d-plugin
Last synced: about 1 month ago
JSON representation
Send Mac OS X Mountain Lion Local User Notification from 4D.
- Host: GitHub
- URL: https://github.com/miyako/4d-plugin-user-notification
- Owner: miyako
- License: mit
- Created: 2013-07-20T12:15:13.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2021-03-23T11:26:44.000Z (over 5 years ago)
- Last Synced: 2025-02-26T04:17:38.846Z (over 1 year ago)
- Topics: 4d-plugin
- Language: C
- Homepage:
- Size: 6.19 MB
- Stars: 0
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README


[](LICENSE)

**Note**: for v17 and earlier, move `manifest.json` to `Contents`
4d-plugin-user-notification
===========================
Send Mac OS X Mountain Lion Local User Notification from 4D.
## Examples
```
NOTIFICATION SET METHOD ("notify") //receives 6 text arguments
$title:="title"
$subtitle:="subtitle"
$informativeText:="informativeText"
NOTIFICATION SET MODE (Notification system decides) //default
NOTIFICATION SET MODE (Notification dislay always)
$soundName:="" //no sound
$soundName:=Notification default sound
DELIVER NOTIFICATION (\
$title;\
$subtitle;\
$informativeText;\
$soundName;\
$userInfo;"action";"close")
```