CDRecordingPrice Property
The CDRecordingPrice property contains the price per recording process.
Syntax
[double=] SiteKiosk.Plugins("SiteCash").CDRecordingPrice
|
Possible Values
Double value that retrieves the price.
|
The property is read only.
Remarks
Examples
The following example determines whether recording CDs is charged and shows the price in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
recPay = SiteKiosk.Plugins("SiteCash").PayCDRecordings;
recPrice = SiteKiosk.Plugins("SiteCash").CDRecordingPrice;
if (recPay) alert("Price per recording process: " + recPrice);
else alert("Recording is for free");
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top