Adobe® Flash® Platform için ActionScript® 3.0 Başvurusu
Ana Sayfa  |  Paket ve Sınıf Listesini Gizle |  Paketler  |  Sınıflar  |  Yenilikler  |  Dizin  |  Ekler  |  Niçin İngilizce?
Filtreler: Sunucudan Veri Alınıyor...
Sunucudan Veri Alınıyor...
mx.events 

AIREvent  - AS3 Flex

Paketmx.events
Sınıfpublic class AIREvent
Miras AlmaAIREvent Inheritance Event Inheritance Object

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Flex 3
Çalışma Zamanı Sürümleri: AIR 1.1

The AIREvent class represents the event object passed to the event listener for several AIR-specific events dispatched by the Window and WindowedApplication components.

İlgili API Öğeleri



Genel Özellikler
 ÖzellikTanımlayan:
 Inheritedbubbles : Boolean
[salt okunur] Bir olayın köpüren bir olay olup olmadığını belirtir.
Event
 Inheritedcancelable : Boolean
[salt okunur] Olayla ilişkilendirilmiş davranışın önlenebilir olup olmadığını gösterir.
Event
 Inheritedconstructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru.
Object
 InheritedcurrentTarget : Object
[salt okunur] Bu Event nesnesini olay dinleyicisiyle etkin olarak işleyen nesne.
Event
 InheritedeventPhase : uint
[salt okunur] Olay akışındaki geçerli aşama.
Event
 Inheritedtarget : Object
[salt okunur] Olay hedefi.
Event
 Inheritedtype : String
[salt okunur] Olay türü.
Event
Genel Yöntemler
 YöntemTanımlayan:
  
    AIREvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor.
AIREvent
 Inherited
Event alt sınıfının bir örneğini çoğaltır.
Event
 Inherited
formatToString(className:String, ... arguments):String
Özel ActionScript 3.0 Event sınıfınızdaki toString() yöntemini uygulamak için bir yardımcı işlev.
Event
 Inherited
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir.
Object
 Inherited
Olayda preventDefault() öğesinin çağrılmış olup olmadığını kontrol eder.
Event
 Inherited
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir.
Object
 Inherited
Bir olayın varsayılan davranışını, bu yapılabiliyorsa iptal eder.
Event
 Inherited
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir.
Object
 Inherited
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar.
Object
 Inherited
Olay akışında geçerli düğümdeki ve ondan sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller.
Event
 Inherited
Olay akışında geçerli düğümden sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller.
Event
 Inherited
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür.
Object
 Inherited
Event nesnesinin tüm özelliklerini içeren bir dize döndürülür.
Event
 Inherited
Belirtilen nesnenin temel değerini döndürür.
Object
Genel Sabitler
 SabitTanımlayan:
      APPLICATION_ACTIVATE : String = "applicationActivate"
[statik] The AIREvent.APPLICATION_ACTIVATE constant defines the value of the type property of the event object for an applicationActivate event.
AIREvent
      APPLICATION_DEACTIVATE : String = "applicationDeactivate"
[statik] The AIREvent.APPLICATION_DEACTIVATE constant defines the value of the type property of the event object for an applicationDeactivate event.
AIREvent
      WINDOW_ACTIVATE : String = "windowActivate"
[statik] The AIREvent.WINDOW_ACTIVATE constant defines the value of the type property of the event object for a windowActivate event.
AIREvent
      WINDOW_COMPLETE : String = "windowComplete"
[statik] The AIREvent.WINDOW_COMPLETE constant defines the value of the type property of the event object for an windowComplete event.
AIREvent
      WINDOW_DEACTIVATE : String = "windowDeactivate"
[statik] The AIREvent.WINDOW_DEACTIVATE constant defines the value of the type property of the event object for a windowDeactivate event.
AIREvent
Yapıcı Ayrıntı
    

AIREvent

()Yapıcı
public function AIREvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Flex 3
Çalışma Zamanı Sürümleri: AIR 1.1

Constructor.

Parametreler
type: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.
Sabit Ayrıntısı
    

APPLICATION_ACTIVATE

Sabit
public static const APPLICATION_ACTIVATE:String = "applicationActivate"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Flex 3
Çalışma Zamanı Sürümleri: AIR 1.1

The AIREvent.APPLICATION_ACTIVATE constant defines the value of the type property of the event object for an applicationActivate event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
fileThe File object associated with this event.
targetThe 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.
typeAIREvent.APPLICATION_ACTIVATE

    

APPLICATION_DEACTIVATE

Sabit 
public static const APPLICATION_DEACTIVATE:String = "applicationDeactivate"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Flex 3
Çalışma Zamanı Sürümleri: AIR 1.1

The AIREvent.APPLICATION_DEACTIVATE constant defines the value of the type property of the event object for an applicationDeactivate event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
fileThe File object associated with this event.
targetThe 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.
typeAIREvent.APPLICATION_DEACTIVATE

    

WINDOW_ACTIVATE

Sabit 
public static const WINDOW_ACTIVATE:String = "windowActivate"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Flex 3
Çalışma Zamanı Sürümleri: AIR 1.1

The AIREvent.WINDOW_ACTIVATE constant defines the value of the type property of the event object for a windowActivate event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
fileThe File object associated with this event.
targetThe 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.
typeAIREvent.WINDOW_ACTIVATE

    

WINDOW_COMPLETE

Sabit 
public static const WINDOW_COMPLETE:String = "windowComplete"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Flex 3
Çalışma Zamanı Sürümleri: AIR 1.1

The AIREvent.WINDOW_COMPLETE constant defines the value of the type property of the event object for an windowComplete event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
fileThe File object associated with this event.
targetThe 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.
typeAIREvent.WINDOW_COMPLETE

    

WINDOW_DEACTIVATE

Sabit 
public static const WINDOW_DEACTIVATE:String = "windowDeactivate"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Flex 3
Çalışma Zamanı Sürümleri: AIR 1.1

The AIREvent.WINDOW_DEACTIVATE constant defines the value of the type property of the event object for a windowDeactivate event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
fileThe File object associated with this event.
targetThe 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.
typeAIREvent.WINDOW_DEACTIVATE





[ X ]Niçin İngilizce?
ActionScript 3.0 Başvurusu'ndaki içerik İngilizce görünür

ActionScript 3.0 Başvurusu'nun tüm bölümleri tüm dillere çevrilmemiştir. Bir dil öğesi çevrilmediğinde İngilizce görünür. Örneğin, ga.controls.HelpBox sınıfı hiçbir dile çevrilmez. Bu nedenle, başvurunun Türkçe versiyonunda ga.controls.HelpBox sınıfı İngilizce görünür.