Anyone know how to create a task for automatic voice call on skype to a specific number. Pls help, i have tried my best to create one.
I saw this but i didnt know how to use it
Intent skype_intent = new Intent("android.intent.action.CALL_PRIVILEGED");
skype_intent.setClassName("com.skype.raider","com.skype.raider.Main");
skype_intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
skype_intent.setData(Uri.parse("tel:+91//phone number"));
startActivity(skype_intent);
https://stackoverflow.com/questions/14293974/skype-call-using-username-in-android
I think you want a "system -> send intent" action filled out something like this:
Code:
A1: Send Intent [
Action: android.intent.action.VIEW
Cat: None
Mime Type:
Data: skype:[user]?call&video=true
Extra:
Extra:
Extra:
Package:
Class:
Target: Activity
In the data field, you should replace "[user]" with the username you are calling.
I don't use Skype so this is a guess and I can't test it. But it should get you going.
"Good judgment comes from experience, and a lot of that comes from bad judgment." - Will Rogers
Related
Hi All
I would be really gratefull if someone could help me on this.
I use Tasker on an Old Phone as a remote controller for my Network. Mainly i do commands via SMS , like WOL my Server.
Sometimes when router restarts , since i do not have Static IP but a DNS domain , i lose external IP and can no longer have RemoteDesktop unless i physically get there
So I would like to set tasker to get my external IP and sent it via SMS. I was told that i should :
1. Set Tasker Launch Brower to a specific URL ( Like: https://icanhazip.com )
2. Set it dump the result of that page to a variable
3. Sent it via SMS ...
But i couldn't make it work
Could someone help ?
Thanks in Advance !
Adrs Ip (2)
A1: HTTP Get [ Serverort:https://icanhazip.com Path: Attributes: Cookies: User Agent: Timeout:10 Mime Type: Output File: Trust Any Certificateff ]
A2: Send SMS [ Number:123456789 Message:%HTTPD Store In Messaging Appff ]
frrancuz. said:
Adrs Ip (2)
A1: HTTP Get [ Serverort:https://icanhazip.com Path: Attributes: Cookies: User Agent: Timeout:10 Mime Type: Output File: Trust Any Certificateff ]
A2: Send SMS [ Number:123456789 Message:%HTTPD Store In Messaging Appff ]
Click to expand...
Click to collapse
I cannot thank you enough !!! Brilliant
I want to send an intent with longitude and latitude to an app.
The app tells you which options you have to choose in order to receive an intent from tasker.
1st extra: lat:16.65878D
2nd extra: lng:-45.0364D
Target: Service
When I set those settings in Tasker and send an intent to Tasker which triggers to send this intent it works perfectly fine but sending an intent which triggers sending an intent seems pointless to me.
Intent serviceIntent = new Intent("com.incorporateapps.fakegps.ENGAGE");
serviceIntent.putExtra(Intent.EXTRA_TITLE, "lat:16.65878D ");
serviceIntent.putExtra(Intent.EXTRA_TEXT, "lng:45.0364D ")
startService(serviceIntent);
The location app tells me it changed its location but always changes location to lat:0, and lng:0
I tried different options for putExtra like EXTRA_SUBJECT instead of EXTRA_TITLE but nothing works.
Do you guys know what the intent tasker sends looks like or what I am doing wrong?
thanks a lot
Autoshare intercept is your friend…
I found that there might be a line break or new line that i was omitting and it would cause Tasker, and the app to completely crash
Hi!
I'm carpooling a lot for my studies with the company BlaBlaCar.
When I book a trip, I receive a specific SMS from BlaBlaCar with the following content :
"BlaBlaCar : Réservation "initial city"-"destination city" "date [dayName. dateNumber month] ?* "hour [hh:mm]" confirmée ! Code ?* donner en voiture : "validation code". Appelez "name of the driver" " phone number [+33XXXXXXXXX]" pour les détails."
I want to make a profile wich activate himself when receiving a SMS from the expeditor "BlaBlaCar" and create a calendar event with the following info :
Name : BlaBlaCar : "name of the driver" - "initial city" -> "destination city"
Time : date and hour received in the SMS
I'm struggling to get the information from the SMS to create the calendar event.
Do someone as an idea on how to solve that?
Thank you for your help!
use notification listener app as a profile
then u have to create calendar event as an action
Yeah but it doesn't tell me how to get the information from the SMS to the calendar event details :/
you have to test the variables of the notification listener app like %nltext into the calendar event entry
Did you ever get this working? I'm looking for the exact same thing for work but my Tasker knowledge is pretty limited.
Hello! I'd like to help me with something. I'd like to Tasker call the specified phone number if the website is unavailable for 60 seconds. I mean... if the 'ping' or 'http' doesn't response i'd like to Tasker make an automatic phone call through the Tasker application.
Website: www.example.com
number: +33304872352
Thank you,
raptor666
Hello!
Ive got problem and im stucked.
im using shell scripts in termux to call actions in tasker.
im doing it like here:
https://glow.li/posts/pass-variables-from-termux-to-tasker/
so for example i can send sms like so:
#tasker#
system-> intent received action: net.dinglish.tasker.send
task:
send SMS: Number: %number; Message: %message
#termux# send.sh
#!/data/data/com.termux/files/usr/bin/sh
am broadcast --user 0 -a net.dinglish.tasker.send -e number "$1" -e message "$2" > /dev/null
so when i execute send.sh 1234567 foo it send "foo" to 1234567
as you can see i can pass variable $1 and $2 and everything is working well.
But from few days im trying to send whatsapp message like this:
#Tasker#
profile: whatsapp
Action: phone->contact Via App
contact: MichaelX
app: .../vnd.com.whatsapp.profile
text: TEST_TEXT
#termux#
#!/data/data/com.termux/files/usr/bin/sh
(this way) am broadcast --user 0 -a net.dinglish.tasker.whatsapp > /dev/null
(or this way) am broadcast --user 0 -a net.dinglish.tasker.whatsapp -e number "$1" -e message "$2" > /dev/null
But when im executing it, whatsapp isnt opening and im geting the Text value inside termux and output "TEST_TEXT" (or %variable) command not found...
How can I do it? How can I call it? Or maybe do YOu know any other way to call it from termux...
Thank You so much, couse im out of ideas how can i pass it.