LoadString Method
The LoadString method loads a string from the stringtable.
Syntax
[str=] SiteCafe.LocaleManager.LoadString(stringID)
|
Parameters
stringID |
Long value that specifies the string ID. |
Return Value
Returns a String that contains the loaded string.
Remarks
Examples
The following example displays the first string of the stringtable.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteCafe.LocaleManager.LoadString(1));
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top