How to send messages to all call recipients when I receive a missed call using Tasker app
Use a phone missed call event as a trigger for a profile then a phone > send sms action in the task. The last number called will be stored in %CNUM.
ktmom said:
Use a phone missed call event as a trigger for a profile then a phone > send sms action in the task. The last number called will be stored in %CNUM.
Click to expand...
Click to collapse
What to give with cnum
Nrzz said:
What to give with cnum
Click to expand...
Click to collapse
I honestly don't know what you are asking. Here's a pointer to the tasker user guide on variables.
Related
is there a program out there for the kaiser that blocks the number from when it calls and txts?
Magicall works great i use it all the time.
http://www.mobihand.com/mobiion/download.asp?id=9349&pdid=717885&ak=52778
and its for both? SMS and CALLS?
elite-fusion said:
and its for both? SMS and CALLS?
Click to expand...
Click to collapse
Yes, it works on both. It lets you automatically add prefix number in front of the original outgoing call number based on your rule. Hang up predefined outgoing numbers such as international calls. In addition, you can also take control of your incoming SMS Messages. Reply back or send an SMS to someone or launch an application when a rule is being triggered. And it can log detail information about all triggered events to the log file.
great, and where can i get the full version ?
elite-fusion said:
great, and where can i get the full version ?
Click to expand...
Click to collapse
You pay for it. ($25)
SPB Phone Suite is cheaper ($20) and then there is Call Firewall which is, err... free
Call Firewall - http://forum.xda-developers.com/showthread.php?t=307178
Choice is yours.
Is there any direct (or convoluted) way to reject an incoming call, i.e. send it directly to voicemail. Meaning
(a) if a call is coming in and matches certain criteria
(b) send the call to VM, and stop the ringing. (programmatically)
I've got (a) under control but I dont know how to do (b).
Any ideas?
Thanks
Jay
Well I know in the phonebook settings there is an option to send directly to voicemail for that particular number but that would require you saving the number in your phone book.
speoples20 said:
Well I know in the phonebook settings there is an option to send directly to voicemail for that particular number but that would require you saving the number in your phone book.
Click to expand...
Click to collapse
+1
I have Telemarketer1 - 7 right now in my phone book and they all go straight to voicemail with that option. Now if there was some way to block "UNKOWN"!
We need a Call Firewall / Blocker Software which can do following.
Register for Intent which can hook Incomming Call events
When Intent is raised if Checks for the number across Predefined Rules in Priority Order if any Rule matched take Action like
Reject Call
Accept and Immediately Reject THIS WILL COST CALLER
Send to Voice Mail
Reject and Reply with SMS
Reject and Create Reminder for Predefined Minutes to Remind us to Call them Back
+1
great idea
Try Youmail (it works for all phones)
There is a program for WM called Mobion MagiCall that would do everything that everyone wants on android but who can port it...
Back to my question...
Folks
I love the lively chit chat but does anyone have an answer to my original question: how do I reject a call programmatically and on the fly (not through phonebook entries set up ahead of time)?
BTW I will have an app available next week on Android Market that allows you to respond to incoming calls with an "I'll call you back asap" text or email, and it will set a reminder for you to call the caller back.
jayandro said:
Folks
I love the lively chit chat but does anyone have an answer to my original question: how do I reject a call programmatically and on the fly (not through phonebook entries set up ahead of time)?
BTW I will have an app available next week on Android Market that allows you to respond to incoming calls with an "I'll call you back asap" text or email, and it will set a reminder for you to call the caller back.
Click to expand...
Click to collapse
OMG!!! YES, WE CAN DO THAT!!!
I was going to kill myself after severe 24 hours of investigating and discovering... But I've found "fresh" solution!
// "cheat" with Java reflection to gain access to TelephonyManager's ITelephony getter
Class c = Class.forName(tm.getClass().getName());
Method m = c.getDeclaredMethod("getITelephony");
m.setAccessible(true);
telephonyService = (ITelephony)m.invoke(tm);
all all all of hundreds of people who wants to develop their call-control software visit this start point
http://www.google.com/codesearch/p?...:http://mylockforandroid\.googlecode\.com&d=0
there is a project. and there are important comments (and credits)
briefly: copy aidl file, add permissions to manifest, copy-paste source for telephony management )))
Some more info for you. AT commands you can send only if you are rooted. Than you can kill system process and send commands but you will need a reboot to allow your phone to receive and send calls =)))
I'm very hapy =) Now my Shake2MuteCall will get an update !
I use tcallblocking lite (search the market for it) to block calls from unknown numbers and any rom with the hacked phone.apk in it allows you to add numbers to a blacklist. No need for additional entries in your contact list
Moved as not Android Development.
I tried Call Firewallv1.40 freeware. It seems to be working at blocking unwanted private calls. I found it here http://www.freewarepocketpc.net/ppc-download-call-firewall-v1-4.html. The price is certainly good.
Features & Options:
a. Accecpt all calls - pretty self explainatory
b. Accept call from My Contacts only - accepts calls from contacts only, others are rejected
c. Reject all calls - pretty self explainatory
d. White List - accepts calls only from the white listed nos
e. Black List - accepts all call except from the black listed nos
f. Black List Pattern - any no STARTING from the black list pattern list is rejected.
for eg. if you enter "123", so all nos STARTING from "123" will be rejected
this is a very nice option with which you can block nos from any particular network, country, city , area or whatever you can think of.
I found this app from mobitnt it is called CallStat, and it is very good application
Main Features
1. Incoming call duration stat.
2. Outgoing call duration stat.
3. Missed Call count
4. Total summery of Incoming call history and outgoing call and missed call
5. Stat. between the time choosed by user
6. Incoming SMS count
7. Outgoing SMS count
8. Get the last contact time for each one in call log
9. Send SMS
10. Make call
But on my kaiser this app blocks, i wonder if there is another app that it is similar with this and has same functions?
Thanks
djshorty said:
I found this app from mobitnt it is called CallStat, and it is very good application
Main Features
1. Incoming call duration stat.
2. Outgoing call duration stat.
3. Missed Call count
4. Total summery of Incoming call history and outgoing call and missed call
5. Stat. between the time choosed by user
6. Incoming SMS count
7. Outgoing SMS count
8. Get the last contact time for each one in call log
9. Send SMS
10. Make call
But on my kaiser this app blocks, i wonder if there is another app that it is similar with this and has same functions?
Thanks
Click to expand...
Click to collapse
Google these
Resco Contact manager, Inesoft contacts, Phone dashboard.
viewedit said:
Google these
Resco Contact manager, Inesoft contacts, Phone dashboard.
Click to expand...
Click to collapse
Thanks, my friend, Very usefull information
Here is a worthful to look @ http://forum.xda-developers.com/showthread.php?t=487181 it's in development My Call Logs by oldsap still in development,
stylez said:
Here is a worthful to look @ http://forum.xda-developers.com/showthread.php?t=487181 it's in development My Call Logs by oldsap still in development,
Click to expand...
Click to collapse
Thanks, it's a godd thing you do, great app,
just to future thiniking, can you add call history for specific Phone number (contact)??
aFirewall in Market now.
--------------------------------------------------------------------------------
aFirewall allows you to configure multi-scenes to block different call or SMS at different time. Its features are as below:
1. You can add black number from call log, SMS log, contacts or add it mannually;
2. You can setup aFirewall password to protect your private black list;
3. Unread blocked call log and SMS log notification;
4. Option to disable and enable aFirewall blocking notification;
I had made it free in market today. I am looking forward to your comments Thank you very much.
(Not installed yet since I have Panda Firewall installed)
Does it come with a toggle widget for SMS blockage?
mystaka said:
(Not installed yet since I have Panda Firewall installed)
Does it come with a toggle widget for SMS blockage?
Click to expand...
Click to collapse
There is no toggle widget in current version. This is a start for aFirewall. Many features will be added in in the near future.
Can I ask a question about this....
Does the call blocking feature block the call completely? I tried Panda but found that blocked calls would ring briefly but then go to voicemail, so I would still get notifications of missed calls. You can already block numbers with the Hero (send to voicemail in contact settings) so I found it pointless.
Does this app block calls to the point that you don't know if a blocked number has called unless you look at the log? This sort of thing is what I'm looking for.
Thanks.
Edit: Double post
Switchbitch said:
Can I ask a question about this....
Does the call blocking feature block the call completely? I tried Panda but found that blocked calls would ring briefly but then go to voicemail, so I would still get notifications of missed calls. You can already block numbers with the Hero (send to voicemail in contact settings) so I found it pointless.
Does this app block calls to the point that you don't know if a blocked number has called unless you look at the log? This sort of thing is what I'm looking for.
Thanks.
Click to expand...
Click to collapse
Thanks for your attention. No ring and notifications of missed calls will be reported out in aFirewall. You can contact me to get a copy to make a try at first. My email is [email protected].
thl16888 said:
Thanks for your attention. No ring and notifications of missed calls will be reported out in aFirewall. You can contact me to get a copy to make a try at first. My email is [email protected].
Click to expand...
Click to collapse
I have some comments:
1. It still make the notification on screen after the call (even disable notification) but did not show in the call history
2. When I block sms as "Accept contact only", it blocked all SMS from my contact people. For example, number in contact is 0902239000 and contact in SMS is +84902239000 (always show that) actually is the same but the program did not know.
3. When I block sms as "Block unknown number" then sometimes it can block the number not in the contact, sometimes could not.
4. When I block the call as "Accept contact only", it block all call from my contact
I have been wondering about this next thing:
I have a friend in Georgia (country) who tries to send me a text message, but i won't receive it.
She can call me, i can call her, i can send her text messages, but the only thing that doesn't work is that i won't receive her text messages.
Can it be the problem that she calls/sends with her number as 'anonymous'?
If so, can i change it somewhere in my setting, that i can receive these text messages from anonymous senders?
Do you have any black list programs?Maybe there is your answer.
Or you can put her number as a contact so it will not be anonymous .Or you mean that there is no number ,its hidden ?
No, i haven't any blacklist software. Only the original settings and programs from Kitkat.
And yes, i mean the number is hidden. I have the number in my list.
John_martin said:
No, i haven't any blacklist software. Only the original settings and programs from Kitkat.
And yes, i mean the number is hidden. I have the number in my list.
Click to expand...
Click to collapse
restore phone default settings..