Pakket | mx.events |
Klasse | public class SandboxMouseEvent |
Overerving | SandboxMouseEvent Event Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
altKey : Boolean
Indicates whether the Alt key was pressed. | SandboxMouseEvent | ||
bubbles : Boolean [alleen-lezen]
Geeft aan of een gebeurtenis een terugkoppelgebeurtenis is. | Event | ||
buttonDown : Boolean
Indicates whether the primary mouse button is pressed (true) or not (false). | SandboxMouseEvent | ||
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 | ||
ctrlKey : Boolean
Indicates whether the Ctrl key was pressed. | SandboxMouseEvent | ||
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 | ||
shiftKey : Boolean
Indicates whether the Shift key was pressed. | SandboxMouseEvent | ||
target : Object [alleen-lezen]
Doel van gebeurtenis. | Event | ||
type : String [alleen-lezen]
Het type gebeurtenis. | Event |
Methode | Gedefinieerd door | ||
---|---|---|---|
SandboxMouseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, ctrlKey:Boolean = false, altKey:Boolean = false, shiftKey:Boolean = false, buttonDown:Boolean = false)
Constructor. | SandboxMouseEvent | ||
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 | ||
[statisch]
Marshal a SWFBridgeRequest from a remote ApplicationDomain into the current
ApplicationDomain. | SandboxMouseEvent | ||
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 | ||
---|---|---|---|
CLICK_SOMEWHERE : String = "clickSomewhere" [statisch]
Mouse was clicked somewhere outside your sandbox. | SandboxMouseEvent | ||
DOUBLE_CLICK_SOMEWHERE : String = "doubleClickSomewhere" [statisch]
Mouse was double-clicked somewhere outside your sandbox. | SandboxMouseEvent | ||
MOUSE_DOWN_SOMEWHERE : String = "mouseDownSomewhere" [statisch]
Mouse button was pressed down somewhere outside your sandbox. | SandboxMouseEvent | ||
MOUSE_MOVE_SOMEWHERE : String = "mouseMoveSomewhere" [statisch]
Mouse was moved somewhere outside your sandbox. | SandboxMouseEvent | ||
MOUSE_UP_SOMEWHERE : String = "mouseUpSomewhere" [statisch]
Mouse button was released somewhere outside your sandbox. | SandboxMouseEvent | ||
MOUSE_WHEEL_SOMEWHERE : String = "mouseWheelSomewhere" [statisch]
Mouse wheel was spun somewhere outside your sandbox. | SandboxMouseEvent |
altKey | eigenschap |
public var altKey:Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Indicates whether the Alt
key was pressed.
Verwante API-elementen
buttonDown | eigenschap |
public var buttonDown:Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Indicates whether the primary mouse button is pressed (true) or not (false).
Verwante API-elementen
ctrlKey | eigenschap |
public var ctrlKey:Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Indicates whether the Ctrl
key was pressed.
Verwante API-elementen
shiftKey | eigenschap |
public var shiftKey:Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Indicates whether the Shift
key was pressed.
Verwante API-elementen
SandboxMouseEvent | () | Constructor |
public function SandboxMouseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, ctrlKey:Boolean = false, altKey:Boolean = false, shiftKey:Boolean = false, buttonDown:Boolean = false)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
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.
| |
ctrlKey:Boolean (default = false ) — Indicates whether the Ctrl key was pressed.
| |
altKey:Boolean (default = false ) — Indicates whether the Alt key was pressed.
| |
shiftKey:Boolean (default = false ) — Indicates whether the Shift key was pressed.
| |
buttonDown:Boolean (default = false ) — Indicates whether the primary mouse button is pressed (true) or not (false).
|
marshal | () | methode |
public static function marshal(event:Event):SandboxMouseEvent
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Marshal a SWFBridgeRequest from a remote ApplicationDomain into the current ApplicationDomain.
Parameters
event:Event — A SWFBridgeRequest that might have been created in a different ApplicationDomain.
|
SandboxMouseEvent — A SandboxMouseEvent created in the caller's ApplicationDomain.
|
CLICK_SOMEWHERE | Constante |
public static const CLICK_SOMEWHERE:String = "clickSomewhere"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Mouse was clicked somewhere outside your sandbox.
DOUBLE_CLICK_SOMEWHERE | Constante |
public static const DOUBLE_CLICK_SOMEWHERE:String = "doubleClickSomewhere"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Mouse was double-clicked somewhere outside your sandbox.
MOUSE_DOWN_SOMEWHERE | Constante |
public static const MOUSE_DOWN_SOMEWHERE:String = "mouseDownSomewhere"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Mouse button was pressed down somewhere outside your sandbox.
MOUSE_MOVE_SOMEWHERE | Constante |
public static const MOUSE_MOVE_SOMEWHERE:String = "mouseMoveSomewhere"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Mouse was moved somewhere outside your sandbox.
MOUSE_UP_SOMEWHERE | Constante |
public static const MOUSE_UP_SOMEWHERE:String = "mouseUpSomewhere"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Mouse button was released somewhere outside your sandbox.
MOUSE_WHEEL_SOMEWHERE | Constante |
public static const MOUSE_WHEEL_SOMEWHERE:String = "mouseWheelSomewhere"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Mouse wheel was spun somewhere outside your sandbox.
Wed Jun 13 2018, 11:42 AM Z