GetURLByName Method



 
The GetURLByName method reads an URL saved in the skindef xml file of the current skin.


Syntax

    [str=] SiteKiosk.URLs.GetURLByName(name)
Parameters
    name String that specifies the name of the URL.
Return Value
    Returns a String that contains the URL.
Remarks
    None.
Examples
    The following example shows the 'emailnav' URL in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.URLs.GetURLByName('emailnav'));
    </SCRIPT>
    

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

Back to top