PayCDRecordings Property



 
The PayCDRecordings property indicates whether recording CDs is charged.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").PayCDRecordings
    
Possible Values
    Boolean value that indicates whether recording is charged.

    The property is read only.
Remarks
    The price will be charged per recording process.
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