What would be the easiest way to create a program that is run on boot of the phone that does this
(vbscript code for demonstration)
x=1
Do until x=0
if unread_sms_msgs > 0 then
exec notification sound
sleep 300
else
sleep 300
end if
Loop
If possible I'd like to also query similarly unacked_missed_calls > 0
Is this a pipe dream, it seems so basic, like 1999.
(vbscript code for demonstration)
x=1
Do until x=0
if unread_sms_msgs > 0 then
exec notification sound
sleep 300
else
sleep 300
end if
Loop
If possible I'd like to also query similarly unacked_missed_calls > 0
Is this a pipe dream, it seems so basic, like 1999.