Packagevegas.events
Classpublic class MediaExpertEvent
InheritanceMediaExpertEvent Inheritance BasicEvent Inheritance flash.events.Event

Dispatched when a Microphone or Camera status is changed "muted" or "unmuted" or if this activity is changed.

See also

vegas.media.CameraExpert
vegas.media.MicrophoneExpert


Public Properties
 PropertyDefined By
 Inheritedcontext : *
Determinates the optional context of this event.
BasicEvent
 Inheritedtarget : Object
[override] Indicates the custom event target.
BasicEvent
 InheritedtimeStamp : uint
[read-only] Indicates the timestamp of the event.
BasicEvent
 Inheritedtype : String
[override] Returns the type of event.
BasicEvent
Public Methods
 MethodDefined By
  
MediaExpertEvent(type:String, target:Object = null, context:* = null, bubbles:Boolean = false, cancelable:Boolean = false, time:Number = 0)
Creates a new MediaExpertEvent instance.
MediaExpertEvent
  
clone():Event
[override] Returns a shallow copy of this object.
MediaExpertEvent
 Inherited
dispatch(channel:String = null):void
Dispatch the event with the global event flow.
BasicEvent
 Inherited
toString():String
[override] Returns the string representation of this event.
BasicEvent
Protected Methods
 MethodDefined By
 Inherited
setTimeStamp(time:uint = 0):void
Sets the timestamp of the event (used this method only in internal in the Event class).
BasicEvent
Public Constants
 ConstantDefined By
  MUTED : String = muted
[static] The name of the event when the Microphone is muted.
MediaExpertEvent
  UNMUTED : String = unmuted
[static] The name of the event when the Microphone is unmuted.
MediaExpertEvent
Constructor Detail
MediaExpertEvent()Constructor
public function MediaExpertEvent(type:String, target:Object = null, context:* = null, bubbles:Boolean = false, cancelable:Boolean = false, time:Number = 0)

Creates a new MediaExpertEvent instance.

Parameters
type:String — the string type of the instance.
 
target:Object (default = null) — the target of the event.
 
context:* (default = null) — the optional context object of the event.
 
bubbles:Boolean (default = false) — indicates if the event is a bubbling event.
 
cancelable:Boolean (default = false) — indicates if the event is a cancelable event.
 
time:Number (default = 0) — this optional parameter is used in the eden deserialization to copy the timestamp value of this event.
Method Detail
clone()method
override public function clone():Event

Returns a shallow copy of this object.

Returns
Event — a shallow copy of this object.
Constant Detail
MUTEDConstant
public static const MUTED:String = muted

The name of the event when the Microphone is muted.

UNMUTEDConstant 
public static const UNMUTED:String = unmuted

The name of the event when the Microphone is unmuted.