Page 1 of 2

Windows 10 Notifications

Posted: Fri Jan 05, 2018 12:31 pm
by fingus
Please implement the Windows 10 Notifications (Info Center).

Re: Windows 10 Notifications

Posted: Sat Jan 06, 2018 12:20 pm
by airsoftsoftwair
Makes sense. Request noted.

Re: Windows 10 Notifications

Posted: Sat Jan 06, 2018 12:54 pm
by jPV
Or make it more generic and support also Magic Beacon on MorphOS and Ringhio on OS4 ;)

Re: Windows 10 Notifications

Posted: Sat Jan 06, 2018 11:09 pm
by fingus
@Andreas: Thanks!
jPV wrote:Or make it more generic and support also Magic Beacon on MorphOS and Ringhio on OS4 ;)
Ringhio on OS4 is easy:

Code: Select all


SendRexxCommand("RINGHIO","REGISTERAPP APP 'YOURAPPNAME'") ; Maybe this is obsolete now

Function p_ringhio(msg)
    rc$ = "RINGHIO APP 'YOURAPPNAME' SCREEN 'FRONT' BACKRXMSG 'YOURAPPNAME' TITLE 'TITLE'  UPDATE '"..msg.."' "
    SendRexxCommand("RINGHIO", rc$)
    code=GetLastError()
    If code <> 0
	sel=SystemRequest("YOURAPPNAME", msg, "OK", #REQICON_WARNING)
	EndIf
EndFunction

p_ringhio("hello world!")


Re: Windows 10 Notifications

Posted: Sun Jan 07, 2018 12:13 pm
by airsoftsoftwair
No need to use ARexx. Hollywood has had Ringhio support since v6.0.

Re: Windows 10 Notifications

Posted: Fri Dec 28, 2018 6:29 pm
by airsoftsoftwair

Code: Select all

- New: Added ShowNotification() function; this is the swiss army knife notification function because
  it works on (almost) every platform; ShowNotification() will show an informational popup which will
  disappear automatically after a certain delay; on Android/iOS, ShowNotification() does the same as
  ShowToast(), on AmigaOS 4 it does the same as ShowRinghioMessage() (which is why you need to set
  "RegisterApplication" to TRUE on OS4 in order to use the function); note that on Windows notifications
  are only supported if there is a tray icon; thus, if you haven't called SetTrayIcon() explicitly,
  ShowNotification() will do this for you because it can only show a notification if there is a tray
  icon

Re: Windows 10 Notifications

Posted: Sun Dec 30, 2018 12:50 pm
by SamuraiCrow
Will this help in AmigaOS 3? http://aminet.net/package/util/cdity/Ranchero

The next version should be even better with planar support and other features.

Re: Windows 10 Notifications

Posted: Tue Jan 01, 2019 4:36 pm
by airsoftsoftwair
Looks interesting, I'll see if it can be supported!

Re: Windows 10 Notifications

Posted: Mon Jan 14, 2019 2:51 pm
by fingus
Thank you Andreas!

Re: Windows 10 Notifications

Posted: Fri Jul 22, 2022 10:59 pm
by airsoftsoftwair
jPV wrote: Sat Jan 06, 2018 12:54 pm Or make it more generic and support also Magic Beacon on MorphOS

Code: Select all

- New [MorphOS]: ShowNotification() supports the MagicBeacon system now; two different kinds are supported:
  normal and error notifications; to show an error, set the "Icon" tag in the optional table argument to
  #REQICON_ERROR; otherwise, a normal notification is shown; the notification will use app name defined in
  the @APPTITLE preprocessor command