I have this setup on my phone (see below).
I would like the phone set ringing variable to 0 (make it shut up) if I push the volume down button (or some other button) while it's ringing.
Can anyone tell me how to set that up?
I am not seeing the ability to tie it into pressing a button.
On Jul 17 2010, 4:22 pm, Pent <tas...@dinglisch.net> wrote:
>
> I wouldsay:
>
> Event: Phone Ringing
> Variable Set RINGING = 1Say%CNUM if %RINGING = 1
> Goto 2 if %RINGING = 1
>
> Event: Phone Offhook <-- answered
> Variable Set RINGING = 0
>
> Event: Phone Idle: <-- ended or they gave up
> Variable Set RINGING = 0
>
> Pent
Just monitor the change in ringtone volume, when it changes set volume to 0
> can anyone help me with the repeat caller name profile from the tasker wiki. I am not sure how to adjust it so it does not contiuously repeat caller name if rejected or even when answered sometimes. any help or direction appreciated.
>
Could you post your profile here... Long press on the profile name / ( 3 dot menu with 4.0+ ) export / export description to clipboard (not XML)
The beginner mode needs to be off and the profile needs to have a name to be able to export.
This is what I got from tasker wiki Profile: PhoneRinging (79)
State: Call [ Type:Incoming Number:* ]
State: Headset Plugged [ Type:Any ]
Enter: SayCallerName (77)
A1: Variable Set [ Name:%RINGING To:1 Do Maths:Off Append:Off ]
A2: Say [ Text:%CNAME calling Engine:Voice:com.svox.pico:eng-USA Stream:3 Pitch:5 Speed:5 Continue Task Immediately:Off ]
A3: Goto [ Type:Action Number Number:1 Label: ] If [ %RINGING Is Set ]
Exit: Shush (78)
A1: If [ %RINGING Is Set ]
A2: Variable Clear [ Name:%RINGING Pattern Matching:Off ]
A3: Shut Up
--
You received this message because you are subscribed to a topic in the Google Groups "Tasker" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tasker/V_z1YJ6lBGQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tasker+un...@googlegroups.com.
Visit this group at http://groups.google.com/group/tasker.
For more options, visit https://groups.google.com/groups/opt_out.
Create new task, only action misc. Say - Call from %CNAME
engine: default:default
stream: media or system (try both)
Tie event context, phone ringing, contact: C:ANY. (remove the headset context also)
Unfortunately, the profiles on the wiki are what I would consider as outdated.
Let me know if there are any problems!
Can I leave the headset mode in that's the only time I need tasker to say the caller name because the phone is in my bag
Makes the process easier to troubleshoot when things go awry.
I don't know what I'm doing wrong but that profile is not working for me when I press the play button or test it reads the name of last caller but when I call the number out just rings
Read Text (3)
A1: Say [ Text:Text From %SMSRN %SMSRB Engine:Voice:default:default Stream:3 Pitch:5 Speed:5 Continue Task Immediately:Off ]
Not, who is calling you.
No I do want it to say who is calling when I have my headset attached here is what I've done Profile: Who's Calling (71)
Event: Phone Ringing [ Caller:%CNAME /C:ANY ]
State: Call [ Type:Incoming Number:C:ANY ]
State: Headset Plugged [ Type:Any ]
Enter: Who's Calling (72)
A1: Say [ Text:Chef G %CNAME is calling Engine:Voice:com.svox.pico:eng-GBR Stream:1 Pitch:5 Speed:5 Continue Task Immediately:Off ]
Profile: Who's Calling (71)
Event: Phone Ringing [ Caller:C:ANY ]
State: Headset Plugged [ Type:Any ]
Enter: Who's Calling (72)
A1: Say [ Text:Chef G %CNAME is calling Engine:Voice:com.svox.pico:eng-GBR Stream:1 Pitch:5 Speed:5 Continue Task Immediately:Off ]
... try that.
But! Tasker can announce caller ID when ringing and connected to M2DP capable Bluetooth devices, these are specific media compatible Bluetooth headsets. We would need to alter your context to an appropriate activation though.
Yes I'm using a wired headset think I've got it working now thanks for all your help
Hey,
I want to use tasker to say the name of the caller instead of a
ringtone.
%CNUM is working for the number, but is there also a variable for the
name of the caller?
Or perhaps a way to match it with the contacts?
And is there also a variable containing the information whether there
is an incoming call right now?
I want tasker to repeat saying the callers name until the call ends or
is answered.
I am using a goto action, but I can't tell it when to repeat and when
not to.
A stop action in the exit task won't stop it, so it will repeat until
I turn tasker off.
The homepage is still down so I can't check the userguide.
Hope you can help me.
Marcus
Matt
I had the same problem! What solwed it for me was in The action Say the respect audio focus was checked. Uncheck it and try again maybe it Will work for you to.
/Martin
Happy to help:)
Matt
> > I want to use tasker to say the name of the caller instead of a
> > ringtone.
> > %CNUM is working for the number, but is there also a variable for the
> > name of the caller?
> > Or perhaps a way to match it with the contacts?
Caller name variable is on todo list.
> > And is there also a variable containing the information whether there
> > is an incoming call right now?
> > I want tasker to repeat saying the callers name until the call ends or
> > is answered.
> > I am using a goto action, but I can't tell it when to repeat and when
> > not to.
> > A stop action in the exit task won't stop it, so it will repeat until
> > I turn tasker off.
I would say:
Event: Phone Ringing
Variable Set RINGING = 1
Say %CNUM if %RINGING = 1
Goto 2 if %RINGING = 1
Event: Phone Offhook <-- answered
Variable Set RINGING = 0
Event: Phone Idle: <-- ended or they gave up
Variable Set RINGING = 0
Pent