Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 4d-plugin-apple-silicon
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 (over 11 years ago)
- Default Branch: master
- Last Pushed: 2021-03-23T11:26:44.000Z (almost 4 years ago)
- Last Synced: 2023-03-25T01:12:22.902Z (over 1 year ago)
- Topics: 4d-plugin, 4d-plugin-apple-silicon
- 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
![version](https://img.shields.io/badge/version-17%2B-3E8B93)
![platform](https://img.shields.io/static/v1?label=platform&message=mac-intel%20|%20mac-arm&color=blue)
[![license](https://img.shields.io/github/license/miyako/4d-plugin-user-notification)](LICENSE)
![downloads](https://img.shields.io/github/downloads/miyako/4d-plugin-user-notification/total)**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 soundDELIVER NOTIFICATION (\
$title;\
$subtitle;\
$informativeText;\
$soundName;\
$userInfo;"action";"close")
```