Pakiet | mx.events |
Klasa | public class SandboxMouseEvent |
Dziedziczenie | SandboxMouseEvent Event Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
altKey : Boolean
Indicates whether the Alt key was pressed. | SandboxMouseEvent | ||
bubbles : Boolean [tylko do odczytu]
Określa, czy zdarzenie może przechodzić fazę propagacji. | Event | ||
buttonDown : Boolean
Indicates whether the primary mouse button is pressed (true) or not (false). | SandboxMouseEvent | ||
cancelable : Boolean [tylko do odczytu]
Wskazuje, czy można uniemożliwić operacje skojarzone ze zdarzeniem. | Event | ||
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
ctrlKey : Boolean
Indicates whether the Ctrl key was pressed. | SandboxMouseEvent | ||
currentTarget : Object [tylko do odczytu]
Obiekt przetwarzający aktywnie obiekt Event za pomocą detektora zdarzeń. | Event | ||
eventPhase : uint [tylko do odczytu]
Bieżąca faza przepływu zdarzeń. | Event | ||
shiftKey : Boolean
Indicates whether the Shift key was pressed. | SandboxMouseEvent | ||
target : Object [tylko do odczytu]
Miejsce docelowe zdarzenia. | Event | ||
type : String [tylko do odczytu]
Typ zdarzenia. | Event |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
SandboxMouseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, ctrlKey:Boolean = false, altKey:Boolean = false, shiftKey:Boolean = false, buttonDown:Boolean = false)
Constructor. | SandboxMouseEvent | ||
Powiela instancję podklasy Event. | Event | ||
Funkcja narzędziowa umożliwiająca implementację metody toString() w niestandardowych klasach Event w języku ActionScript 3.0. | Event | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Sprawdza, czy w odniesieniu do tego zdarzenia wywołano metodę preventDefault(). | Event | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
[statyczny]
Marshal a SWFBridgeRequest from a remote ApplicationDomain into the current
ApplicationDomain. | SandboxMouseEvent | ||
Anuluje domyślne ustawienia zdarzenia, o ile zachowanie to może być anulowane. | Event | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węźle bieżącym i węzłach następujących po nim. | Event | ||
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węzłach następujących po węźle bieżącym w przepływie zdarzeń. | Event | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg znaków, który zawiera wszystkie właściwości obiektu Event. | Event | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Stała | Zdefiniowane przez | ||
---|---|---|---|
CLICK_SOMEWHERE : String = "clickSomewhere" [statyczny]
Mouse was clicked somewhere outside your sandbox. | SandboxMouseEvent | ||
DOUBLE_CLICK_SOMEWHERE : String = "doubleClickSomewhere" [statyczny]
Mouse was double-clicked somewhere outside your sandbox. | SandboxMouseEvent | ||
MOUSE_DOWN_SOMEWHERE : String = "mouseDownSomewhere" [statyczny]
Mouse button was pressed down somewhere outside your sandbox. | SandboxMouseEvent | ||
MOUSE_MOVE_SOMEWHERE : String = "mouseMoveSomewhere" [statyczny]
Mouse was moved somewhere outside your sandbox. | SandboxMouseEvent | ||
MOUSE_UP_SOMEWHERE : String = "mouseUpSomewhere" [statyczny]
Mouse button was released somewhere outside your sandbox. | SandboxMouseEvent | ||
MOUSE_WHEEL_SOMEWHERE : String = "mouseWheelSomewhere" [statyczny]
Mouse wheel was spun somewhere outside your sandbox. | SandboxMouseEvent |
altKey | właściwość |
public var altKey:Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates whether the Alt
key was pressed.
Powiązane elementy interfejsu API
buttonDown | właściwość |
public var buttonDown:Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates whether the primary mouse button is pressed (true) or not (false).
Powiązane elementy interfejsu API
ctrlKey | właściwość |
public var ctrlKey:Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates whether the Ctrl
key was pressed.
Powiązane elementy interfejsu API
shiftKey | właściwość |
public var shiftKey:Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates whether the Shift
key was pressed.
Powiązane elementy interfejsu API
SandboxMouseEvent | () | Konstruktor |
public function SandboxMouseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, ctrlKey:Boolean = false, altKey:Boolean = false, shiftKey:Boolean = false, buttonDown:Boolean = false)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Constructor.
Parametrytype: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 | () | metoda |
public static function marshal(event:Event):SandboxMouseEvent
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Marshal a SWFBridgeRequest from a remote ApplicationDomain into the current ApplicationDomain.
Parametry
event:Event — A SWFBridgeRequest that might have been created in a different ApplicationDomain.
|
SandboxMouseEvent — A SandboxMouseEvent created in the caller's ApplicationDomain.
|
CLICK_SOMEWHERE | Stała |
public static const CLICK_SOMEWHERE:String = "clickSomewhere"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Mouse was clicked somewhere outside your sandbox.
DOUBLE_CLICK_SOMEWHERE | Stała |
public static const DOUBLE_CLICK_SOMEWHERE:String = "doubleClickSomewhere"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Mouse was double-clicked somewhere outside your sandbox.
MOUSE_DOWN_SOMEWHERE | Stała |
public static const MOUSE_DOWN_SOMEWHERE:String = "mouseDownSomewhere"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Mouse button was pressed down somewhere outside your sandbox.
MOUSE_MOVE_SOMEWHERE | Stała |
public static const MOUSE_MOVE_SOMEWHERE:String = "mouseMoveSomewhere"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Mouse was moved somewhere outside your sandbox.
MOUSE_UP_SOMEWHERE | Stała |
public static const MOUSE_UP_SOMEWHERE:String = "mouseUpSomewhere"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Mouse button was released somewhere outside your sandbox.
MOUSE_WHEEL_SOMEWHERE | Stała |
public static const MOUSE_WHEEL_SOMEWHERE:String = "mouseWheelSomewhere"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Mouse wheel was spun somewhere outside your sandbox.
Tue Jun 12 2018, 12:06 PM Z