#Notifications
#Notifications are used to show messages
#General form: note(text[, type[, global ] ])
import appuifw
appuifw.note(u"Almost finished...")
#shows a standard message
appuifw.note(u"Download complete", "conf")
#shows the message as a confirmation
appuifw.note(u"Invalid syntax", "error")
#shows the message as a warning with appropriate sound
#Note that you can display notes even when your application is in the background
#by setting the "global" flag to 1
#Notifications are used to show messages
#General form: note(text[, type[, global ] ])
import appuifw
appuifw.note(u"Almost finished...")
#shows a standard message
appuifw.note(u"Download complete", "conf")
#shows the message as a confirmation
appuifw.note(u"Invalid syntax", "error")
#shows the message as a warning with appropriate sound
#Note that you can display notes even when your application is in the background
#by setting the "global" flag to 1