From a webworks (HTML5) app, using the BB10 platform, I would like a to call a phone number.
Googling yielded these:
- https://developer.blackberry.com/html5/api/blackberry.phone.Phone.Call.html
- https://developer.blackberry.com/html5/api/blackberry.invoke.PhoneArguments.html
They weren't very helpful, as they are essentially blank. (they appear to be stub articles).
How would one do this?
Thanks!
EDIT
I found this other question on SO, regarding opening a browser: WebWorks: Open Web Browser?
... and in a similar vein, the documentation also appears to be a stub article:
If this method of opening a browser does indeed work:
var args = new blackberry.invoke.BrowserArguments('http://www.blackberry.com');
blackberry.invoke.invoke(blackberry.invoke.APP_BROWSER, args);
... then calling PhoneArguments in the same pattern should be worth a shot:
var args = new blackberry.invoke.PhoneArguments (ARG_1, ARG_2, ...);
blackberry.invoke.invoke(blackberry.invoke.APP_XYZ, args);
However, I cannot guess what ARG_* and APP_XYZ should be - any ideas?