Get Method
The Get method returns a string value by key.
Syntax
[string=] SiteKiosk.Plugins("SiteCash").Macromap.Get(key)
|
Parameters
key |
String that specifies the value to be returned. |
Return Value
Returns a String that contains the current value for the given key.
Remarks
Examples
The following example alerts the current date.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCash = SiteKiosk.Plugins("SiteCash");
alert(SiteCash.Macromap.Get("Date"));
</SCRIPT>
|
Applies to
SiteKiosk v7.2 (and later versions).
Back to top