One small correction on this one..
>
> Profile 1:
> Context: Variable Value %SILENT ~ on
> Context: Event Missed Call
> Task:
> If %SMSreply !~R %evtprm1
Should be..
If %SMSreply(:) !~R %evtprm1
> Send SMS to:%evtprm1 body:Hi, I'm currently on silent so I'll call you back
> Array Push %SMSreply %evtprm1
> End If
>
I personally do not understand why you would not want to resend the text if the same caller calls again. I think I would take this profile 1 step further and get the number of calls you have received from the same caller and adjust the text as the calls increase. Something like,
1. Sorry I can not talk at the moment, will call back as soon as possible.
2. Still can not talk, Will call back, WHEN I FEEL LIKE IT.
........
.......
10. You have now called 10 times. I WILL HUNT YOU DOWN AND KILL YOU......
Or something like that.... :)
Or something like that.... :)
Lmao! Okay, now I HAVE to do that...
Profile: AutoText Availability After Missed Call (104)
Event: Missed Call [ Caller:* ]
State: Calendar Entry [ Title:Work Location:* Description:* Available:No Calendar:* ]
Enter: Auto Missed Call Message (103)
A1: Stop [ With Error:Off Task:Auto Missed Call Message ] If [ %CALLOC ~ \%CALLOC ]
A2: Stop [ With Error:Off Task:Auto Missed Call Message ] If [ %CALDESCR ~ \%CALDESCR ]
A3: Test [ Type:Calendar End (Seconds) Data:%TIMES Store Result In:%calend ]
A4: Variable Convert [ Name:%calend1 Function:Seconds to Long Date Time Store Result In:%calend ]
A5: Send SMS [ Number:%CNUM Message:(Automated message) I'm sorry I missed your call. But, I am currently occupied with %CALTITLE specifically %CALDESCR at %CALLOC and my phone is set %SILENT /silent. At the earliest I will be available after %calend Store In Messaging App:On ] If [ %SILENT !~ off ]
A6: Send SMS [ Number:%CNUM Message:(Automated message) I'm sorry I missed your call. But, I am currently occupied with %CALTITLE specifically %CALDESCR at %CALLOC. At the earliest I will be available after %calend Store In Messaging App:On ] If [ %SILENT ~ off ]
A7: Flash [ Text:SMS sent Long:Off ]
A8: Vibrate Pattern [ Pattern:250,250,500,250,250,250,750,750 ] If [ %SILENT !~ on ]
Hope this helps you going in the right direction.