Paket | mx.events |
Sınıf | public class MetadataEvent |
Miras Alma | MetadataEvent Event Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
İlgili API Öğeleri
Özellik | Tanımlayan: | ||
---|---|---|---|
bubbles : Boolean [salt okunur]
Bir olayın köpüren bir olay olup olmadığını belirtir. | Event | ||
cancelable : Boolean [salt okunur]
Olayla ilişkilendirilmiş davranışın önlenebilir olup olmadığını gösterir. | Event | ||
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
currentTarget : Object [salt okunur]
Bu Event nesnesini olay dinleyicisiyle etkin olarak işleyen nesne. | Event | ||
eventPhase : uint [salt okunur]
Olay akışındaki geçerli aşama. | Event | ||
info : Object
For events off type ACTION_SCRIPT and CUE_POINT,
the index of the cue point in the VideoDisplay.cuePoint Array. | MetadataEvent | ||
target : Object [salt okunur]
Olay hedefi. | Event | ||
type : String [salt okunur]
Olay türü. | Event |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | MetadataEvent | ||
Event alt sınıfının bir örneğini çoğaltır. | Event | ||
Özel ActionScript 3.0 Event sınıfınızdaki toString() yöntemini uygulamak için bir yardımcı işlev. | Event | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Olayda preventDefault() öğesinin çağrılmış olup olmadığını kontrol eder. | Event | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Bir olayın varsayılan davranışını, bu yapılabiliyorsa iptal eder. | Event | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Olay akışında geçerli düğümdeki ve ondan sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller. | Event | ||
Olay akışında geçerli düğümden sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller. | Event | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Event nesnesinin tüm özelliklerini içeren bir dize döndürülür. | Event | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
Sabit | Tanımlayan: | ||
---|---|---|---|
ACTION_SCRIPT : String = "actionscript" [statik]
The MetadataEvent.ACTION_SCRIPT constant defines the value of the
type property of the event object for a actionscript event. | MetadataEvent | ||
CUE_POINT : String = "cuePoint" [statik]
The MetadataEvent.CUE_POINT constant defines the value of the
type property of the event object for a cuePoint event. | MetadataEvent | ||
METADATA_RECEIVED : String = "metadataReceived" [statik]
The MetadataEvent.METADATA_RECEIVED constant defines the value of the
type property for a metadataReceived event. | MetadataEvent |
info | özellik |
public var info:Object
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
For events off type ACTION_SCRIPT
and CUE_POINT
,
the index of the cue point in the VideoDisplay.cuePoint
Array.
For events off type METADATA_RECEIVED
,
an object describing the FLV file, including any cue points,
which is the same information as the VideoDisplay.metadata
property.
İlgili API Öğeleri
MetadataEvent | () | Yapıcı |
public function MetadataEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, info:Object = null)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructor.
Parametrelertype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble up the display list hierarchy.
| |
cancelable:Boolean (default = false ) — Specifies whether the behavior associated with
the event can be prevented.
| |
info:Object (default = null ) — For events off type ACTION_SCRIPT and CUE_POINT ,
the index of the cue point in the VideoDisplay.cuePoint Array.
For events off type METADATA_RECEIVED ,
an object describing the FLV file, including any cue points,
which is the same information as the VideoDisplay.metadata property.
|
ACTION_SCRIPT | Sabit |
public static const ACTION_SCRIPT:String = "actionscript"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
The MetadataEvent.ACTION_SCRIPT constant defines the value of the
type
property of the event object for a actionscript
event.
These cue points are not embedded in the FLV file but defined
using ActionScript at run time.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
info | The index of the cue point in the VideoDisplay.cuePoint Array. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
CUE_POINT | Sabit |
public static const CUE_POINT:String = "cuePoint"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
The MetadataEvent.CUE_POINT constant defines the value of the
type
property of the event object for a cuePoint
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
info | The index of the cue point in the VideoDisplay.cuePoint Array. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
METADATA_RECEIVED | Sabit |
public static const METADATA_RECEIVED:String = "metadataReceived"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
The MetadataEvent.METADATA_RECEIVED constant defines the value of the
type
property for a metadataReceived
event.
This event has the following properties:
Property | Value |
---|---|
bubbles | false |
cancelable | false ;
there is no default behavior to cancel. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
info | An object describing the FLV
file, including any cue points. This property contains the same information
as the VideoDisplay.metadata property.
See the VideoDisplay.metadata property for more information. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
vp | The index of the VideoPlayer object. |
Tue Jun 12 2018, 01:09 PM Z