LoadString Method
The LoadString method returns one string of the currently used string table.
Syntax
[str=] SiteKioskWindow.StringTable.LoadString(id)
|
Parameters
Long value that specifies the title ID.
|
Return Value
Returns a String of the current string table.
Remarks
Examples
The following example shows the first string of the current string table file.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKioskWindow.StringTable.LoadString(1));
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top