Can LiveCode apps be Notification Center enabled to appear in the Today view extension?

Matthias Rebbe | M-R-D matthias_livecode_150811 at m-r-d.de
Sun Feb 22 16:06:28 EST 2015


Rolf Kocherhans posted some time ago (10/2013) a sample livecode script for this. It uses AppleScript.

on mouseUp
  put "LiveCode" && the environment into tTitle
  put "vers." && revAppVersion() into tSubtitle
  put long system time & "," && the long system date into tNotification
  displayNotification tTitle, tSubtitle, tNotification
end mouseUp

command displayNotification tTitleText, tSubtitleText, tNotificationText
  put "display notification "& quote & tNotificationText & quote &\
  " with title " & quote & tTitleText & quote &" subtitle "& quote &\
  tSubtitleText & quote &""& return & ""into tAppleScriptCode
  do tAppleScriptCode as AppleScript
end displayNotification



And there is an external from Monte available called mergNotifiy which, if i understood the description correctly, is able to send notifications to the notification center.
see http://www.mergext.com

HTH

Matthias


> Am 22.02.2015 um 18:18 schrieb Ethan Lish <ethanlish at gmail.com>:
> 
> Can LiveCode apps be Notification Center enabled to appear in the Today view extension?
> If yes, is there a reference document?
> If no, is this a roadmap item?
> E
> _______________________________________________
> use-livecode mailing list
> use-livecode at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode




More information about the use-livecode mailing list