Paket | mx.events |
Sınıf | public class TouchInteractionEvent |
Miras Alma | TouchInteractionEvent Event Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 2.5 |
Ö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 | ||
reason : String
The reason for this gesture capture event. | TouchInteractionEvent | ||
relatedObject : Object
The object attempting to capture this touch interaction. | TouchInteractionEvent | ||
target : Object [salt okunur]
Olay hedefi. | Event | ||
type : String [salt okunur]
Olay türü. | Event |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | TouchInteractionEvent | ||
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: | ||
---|---|---|---|
TOUCH_INTERACTION_END : String = "touchInteractionEnd" [statik]
The TouchInteractionEvent.TOUCH_INTERACTION_END constant defines the value of the
type property of the event object for a touchInteractionEnd event. | TouchInteractionEvent | ||
TOUCH_INTERACTION_START : String = "touchInteractionStart" [statik]
The TouchInteractionEvent.TOUCH_INTERACTION_START constant defines the value of the
type property of the event object for a touchInteractionStart event. | TouchInteractionEvent | ||
TOUCH_INTERACTION_STARTING : String = "touchInteractionStarting" [statik]
The TouchInteractionEvent.TOUCH_INTERACTION_STARTING constant defines the value of the
type property of the event object for a touchInteractionStarting event. | TouchInteractionEvent |
reason | özellik |
public var reason:String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 2.5 |
The reason for this gesture capture event.
İlgili API Öğeleri
relatedObject | özellik |
public var relatedObject:Object
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 2.5 |
The object attempting to capture this touch interaction.
TouchInteractionEvent | () | Yapıcı |
public function TouchInteractionEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 2.5 |
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.
|
TOUCH_INTERACTION_END | Sabit |
public static const TOUCH_INTERACTION_END:String = "touchInteractionEnd"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 2.5 |
The TouchInteractionEvent.TOUCH_INTERACTION_END
constant defines the value of the
type
property of the event object for a touchInteractionEnd
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 . |
reason | The reason for the touch interaction event. See
mx.events.TouchInteractionReason . |
relatedObject | The object associated with this touch interaction event. |
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. |
İlgili API Öğeleri
TOUCH_INTERACTION_START | Sabit |
public static const TOUCH_INTERACTION_START:String = "touchInteractionStart"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 2.5 |
The TouchInteractionEvent.TOUCH_INTERACTION_START
constant defines the value of the
type
property of the event object for a touchInteractionStart
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | true |
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 . |
reason | The reason for the touch interaction event. See
mx.events.TouchInteractionReason . |
relatedObject | The object associated with this touch interaction event. |
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. |
İlgili API Öğeleri
TOUCH_INTERACTION_STARTING | Sabit |
public static const TOUCH_INTERACTION_STARTING:String = "touchInteractionStarting"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 2.5 |
The TouchInteractionEvent.TOUCH_INTERACTION_STARTING
constant defines the value of the
type
property of the event object for a touchInteractionStarting
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | true |
cancelable | true |
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 . |
reason | The reason for the touch interaction event. See
mx.events.TouchInteractionReason . |
relatedObject | The object associated with this touch interaction event. |
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. |
İlgili API Öğeleri
Tue Jun 12 2018, 01:09 PM Z