muted (Microphone.muted property)

public muted : Boolean [read-only]

A Boolean value that specifies whether the user has denied access to the microphone (true) or allowed access (false). When this value changes, Microphone.onStatus is invoked. For more information, see Microphone.get().

Availability: ActionScript 1.0; Flash Player 6

Example

This example gets the default microphone and checks whether it is muted.

var active_mic:Microphone = Microphone.get();
trace(active_mic.muted);

See also

get (Microphone.get method), onStatus (Microphone.onStatus handler)