Hi Everyone
I'm trying to change the icon of the local notification my game is creating using the undocumented SetNotificationImage(Integer iImageIndex) command (undocumented in that it does not appear in the API help you get when you hit F1 while the cursor is on a command)
So without being able to find any help online, I thought I'd turn here in the hopes that somebody has used it and knows
Here's what I do:
sprNotificationIcon = LoadImage("sprites/notificationIcon.png")
SetNotificationImage(sprNotificationIcon)
SetLocalNotification(NOTIFICATION_READY, GetUnixTime() + msg.delay, "The dude is ready for you")
So the notification is shown correctly, but without the icon (using the default AppGameKit notification icon)
My icon is a 22x22 PNG image with just a white circle in the middle
Thanks!