OnSkinLanguageChange Event



 
Fires when the skin language changes.


Syntax

    SiteKioskWindow.OnSkinLanguageChange = handler
Parameters
    newlangid Long value that contains the new language ID.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows an alert window when the skin language changes.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKioskWindow.OnSkinLanguageChange = OnSkinLanguageChange;
    function OnSkinLanguageChange(newlangid)
    {
       alert(newlangid);
    }
    </SCRIPT>
    

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

Back to top