We can make a call by using below piece of code.
using Microsoft.Phone.Tasks;
PhoneCallTask phoneCallTask = new PhoneCallTask();
phoneCallTask.PhoneNumber = "2065550123";
phoneCallTask.DisplayName = "Gage";
phoneCallTask.Show();
But my requirement is to automate dialing.Above piece of code requires manual intervention to hit/select call button for dialing. Is there any way that i can simulate dial event on windows phone so calls will automated. If there is no such support on windows phone 8, some scripting language does the job for me?
No, using this task is only way on Windows Phone how you can begin phone call.