Pakket | mx.events |
Klasse | public class TouchInteractionEvent |
Overerving | TouchInteractionEvent Event Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 2.5 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
bubbles : Boolean [alleen-lezen]
Geeft aan of een gebeurtenis een terugkoppelgebeurtenis is. | Event | ||
cancelable : Boolean [alleen-lezen]
Geeft aan of het gedrag dat aan deze gebeurtenis is gekoppeld, kan worden voorkomen. | Event | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
currentTarget : Object [alleen-lezen]
Het object dat het gebeurtenisobject actief verwerkt met een gebeurtenislistener. | Event | ||
eventPhase : uint [alleen-lezen]
De huidige fase in de gebeurtenisstroom. | Event | ||
reason : String
The reason for this gesture capture event. | TouchInteractionEvent | ||
relatedObject : Object
The object attempting to capture this touch interaction. | TouchInteractionEvent | ||
target : Object [alleen-lezen]
Doel van gebeurtenis. | Event | ||
type : String [alleen-lezen]
Het type gebeurtenis. | Event |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | TouchInteractionEvent | ||
Dupliceert een instantie van een subklasse Event. | Event | ||
Een hulpprogrammafunctie voor de implementatie van de methode toString() in aangepaste ActionScript 3.0-Event-klassen. | Event | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Controleert of de methode preventDefault() is aangeroepen voor de gebeurtenis. | Event | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Annuleert het standaardgedrag van een gebeurtenis wanneer dat gedrag kan worden geannuleerd. | Event | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Voorkomt het verwerken van gebeurtenislisteners in het huidige knooppunt en volgende knooppunten in de gebeurtenisstroom. | Event | ||
Voorkomt het verwerken van gebeurtenislisteners in knooppunten die volgen op het huidige knooppunt in de gebeurtenisstroom. | Event | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeks die alle eigenschappen van het Event-object bevat. | Event | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
TOUCH_INTERACTION_END : String = "touchInteractionEnd" [statisch]
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" [statisch]
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" [statisch]
The TouchInteractionEvent.TOUCH_INTERACTION_STARTING constant defines the value of the
type property of the event object for a touchInteractionStarting event. | TouchInteractionEvent |
reason | eigenschap |
public var reason:String
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 2.5 |
The reason for this gesture capture event.
Verwante API-elementen
relatedObject | eigenschap |
public var relatedObject:Object
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 2.5 |
The object attempting to capture this touch interaction.
TouchInteractionEvent | () | Constructor |
public function TouchInteractionEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 2.5 |
Constructor.
Parameterstype: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 | Constante |
public static const TOUCH_INTERACTION_END:String = "touchInteractionEnd"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | 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. |
Verwante API-elementen
TOUCH_INTERACTION_START | Constante |
public static const TOUCH_INTERACTION_START:String = "touchInteractionStart"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | 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. |
Verwante API-elementen
TOUCH_INTERACTION_STARTING | Constante |
public static const TOUCH_INTERACTION_STARTING:String = "touchInteractionStarting"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | 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. |
Verwante API-elementen
Wed Jun 13 2018, 11:42 AM Z