Windows 10 Notifications

Feature requests for future versions of Hollywood can be voiced here
User avatar
fingus
Posts: 269
Joined: Fri Sep 16, 2011 9:53 am

Windows 10 Notifications

Post by fingus »

Please implement the Windows 10 Notifications (Info Center).
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Windows 10 Notifications

Post by airsoftsoftwair »

Makes sense. Request noted.
User avatar
jPV
Posts: 600
Joined: Sat Mar 26, 2016 10:44 am
Location: RNO
Contact:

Re: Windows 10 Notifications

Post by jPV »

Or make it more generic and support also Magic Beacon on MorphOS and Ringhio on OS4 ;)
User avatar
fingus
Posts: 269
Joined: Fri Sep 16, 2011 9:53 am

Re: Windows 10 Notifications

Post 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!")

User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Windows 10 Notifications

Post by airsoftsoftwair »

No need to use ARexx. Hollywood has had Ringhio support since v6.0.
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Windows 10 Notifications

Post 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
SamuraiCrow
Posts: 475
Joined: Fri May 15, 2015 5:15 pm
Location: Waterville, Minnesota USA

Re: Windows 10 Notifications

Post 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.
I'm on registered MorphOS using FlowStudio.
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Windows 10 Notifications

Post by airsoftsoftwair »

Looks interesting, I'll see if it can be supported!
User avatar
fingus
Posts: 269
Joined: Fri Sep 16, 2011 9:53 am

Re: Windows 10 Notifications

Post by fingus »

Thank you Andreas!
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Windows 10 Notifications

Post 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
Post Reply