RecMuted Property



 
The RecMuted property indicates if the recording mixer is currently muted.


Syntax

    [bool=] SiteKiosk.Multimedia.RecMuted
Possible Values
    Boolean value that specifies or retrieves whether
    the recording mixer is muted.

    The property is read/write.
Remarks
    Before using this property the first time, check the RecMutedAvail property to determine
    if the recording mixer can be muted.
Examples
    The following example determines if the recording mixer is currently muted and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Multimedia.RecMuted);
    </SCRIPT>

Applies to
    SiteKiosk v7.0 (and later versions).

Back to top