I want to update a notification every second with new data, but every time it updates it hides the notification and it adds it again (looks like it is blinking). Is there a way to update it instead of the notification disappearing and then appearing again? I just want to change the setinfo and then notify again. I don't want to redraw the notification, just update the text in it.
Dim n As Notification
n.Initialize
n.Icon = "icon"
n.SetInfo("Downloading ", Round((tmp.downloaded*100)/tmp.total) & "%", "")
n.Notify(1)
Dim n As Notification
n.Initialize
n.Icon = "icon"
n.SetInfo("Downloading ", Round((tmp.downloaded*100)/tmp.total) & "%", "")
n.Notify(1)
Last edited: