How to invoke phone app to call a number

How to invoke phone app to call a number

BY 08 May 2013 Web Application Development

Hi guys,

Does anyone know how to invoke phone to make a voice call with a specific number?

I tried the following snipper but getting an error that “the given package is not found”

 

 

var appControl = new tizen.ApplicationControl(“http://tizen.org/appcontrol/operation/dial”,”tel”, “123”);
tizen.application.launchAppControl(appControl, null,
function() {console.log(“OK”); },
function(e) {
console.log(“error: ” + e.message); });

Written by