Jump to content

Recommended Posts

Posted (edited)

Hello Guys,

Could you please let me know if there is a possible way to call a number from PC to Phone using AUTOIT?

Thank you for your time!

 

Best regards,

CosminV

 

Edited by CosminV
Posted

What do you recommend? The phones I try to call should be a Fix phone (home phone) an Android (Samsung) or a Nokia ( keypad model).

 

Posted

Hello ,

 

Thank you AutoBert! That UDF is not working anymore on the newer Skype Versions.

But Thank you for the recommendation. I will use Skype as the calling app. 

When I will finish the function I will post it.

 

BR,

CosminV

Posted

Hello all ,

 

As I told you, bellow you will find the function.

For the good work of the function you need to be logged in Skype and to have Skype credit.

 

global $number="Please input your number"

callskype($number)

Func CallSkype($number)

WinActivate("Skype")

$title= WinGetTitle("")


ControlSend($title, "", "", "{Alt}")
ControlSend($title, "", "", "a")
ControlSend($title, "", "", "l")
ControlSend($title, "", "", "{Enter}")
ControlSend($title, "", "", $number)
ControlSend($title, "", "", "{Enter}")
ControlSend($title, "", "", "{Enter}")

   EndFunc

 

 

Hope to be helpful ! :)

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...