Desktop Notification in tidesdk desktop app
by THavamani[ Edit ] 2014-02-06 19:12:02
create a desktop-remainder application for desktop App.
function showNotify(title, message) {
var notification = Ti.Notification.createNotification({
'title': title || 'No Title',
'message': message || 'No Message',
'timeout': 10
});
notification.show();
}
showNotify("The Title", "The Message");