Desktop Notification in tidesdk desktop app

by THavamani 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");

Tagged in:

1006
like
0
dislike
0
mail
flag

You must LOGIN to add comments