Notification??
Posted: Sat Apr 13, 2013 3:40 pm
Hello 
I was searching for how to make a local notification.
I found this code in the lessons
That was great!
But my Question is how to make it notify at a specific day and time for example, 17/4/2013 at 4:07 PM!
And how to change the notification icon
Thanks
Ahmed F.

I was searching for how to make a local notification.
I found this code in the lessons

Code: Select all
on mouseUp
local tCurrentTime, tNotificationTime, tAlertBody, tAlertButton, tAlertMessage, tSound
put the seconds into tCurrentTime
put field "alertbody" into tAlertBody
put field "alertbutton" into tAlertButton
put field "message" into tAlertMessage
put tCurrentTime + word 1 of field "seconds" into tNotificationTime
put the hilite of button "sound" into tSound
mobileCreateLocalNotification tAlertBody, tAlertButton, tAlertMessage, tNotificationTime, tSound
end mouseUp
But my Question is how to make it notify at a specific day and time for example, 17/4/2013 at 4:07 PM!
And how to change the notification icon

Thanks
Ahmed F.