StartCall Method



 
The StartCall method starts a phone / computer-to-computer call.


Syntax

    SiteKiosk.Plugins("SitePhone").StartCall(destination)
    
Parameters
    destination String that specifies the destination user name or phone number.
Return Value
    None.
Remarks
    None.
Examples
    The following example calls (918) 555-5000.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Plugins("SitePhone").StartCall("+1 918 555 5000");
    </SCRIPT>
    

Applies to
    SiteKiosk v7.0 (and later versions).

Back to top