ActionScript 2.0 Language Reference |
|
|
|
| ActionScript classes > Microphone > 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
This example gets the default microphone and checks whether it is muted.
var active_mic:Microphone = Microphone.get(); trace(active_mic.muted);
get (Microphone.get method), onStatus (Microphone.onStatus handler)
|
|
|
|