Pakiet | com.adobe.ep.ux.content.event |
Klasa | public class AssetFocusEvent |
Dziedziczenie | AssetFocusEvent FlexEvent Event Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
asset : Object [tylko do odczytu]
Name of the action. | AssetFocusEvent | ||
bubbles : Boolean [tylko do odczytu]
Określa, czy zdarzenie może przechodzić fazę propagacji. | Event | ||
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 | ||
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 | ||
eventType : String [tylko do odczytu]
The type of Asset Focus Event. | AssetFocusEvent | ||
focusX : int [tylko do odczytu]
The x-coordinates of the focus. | AssetFocusEvent | ||
focusY : int [tylko do odczytu]
The y-coordinates of the focus. | AssetFocusEvent | ||
target : Object [tylko do odczytu]
Miejsce docelowe zdarzenia. | Event | ||
type : String [tylko do odczytu]
Typ zdarzenia. | Event |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Constructor
| AssetFocusEvent | ||
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 | ||
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 | ||
---|---|---|---|
ACTION_ASSET_FOCUS_GAINED : String = "assetFocusGained" [statyczny]
This constant specifies that the asset has gained focus. | AssetFocusEvent | ||
ACTION_DEFAULT : String = "defaultAction" [statyczny]
This constant specifies the default action on the asset. | AssetFocusEvent | ||
EVENT_ASSET_ACTION_FOCUS : String = "assetFocusEvent" [statyczny]
This constant denotes that the event is the focus on the asset action. | AssetFocusEvent | ||
EVENT_ASSET_ACTIONS_CHANGE : String = "assetActionsChanged" [statyczny]
This constant denotes that the asset actions have been changed. | AssetFocusEvent | ||
EVENT_LAUNCH_EDITOR_WINDOW : String = "launchEditor" [statyczny]
This constant denotes to launch the editor. | AssetFocusEvent | ||
EVENT_OPEN_ACTIVATION_BROWSER : String = "openActivationBrowser" [statyczny]
This constant specifies an event to open the activation browser. | AssetFocusEvent | ||
EVENT_OPEN_RELATIONSHIP_BROWSER : String = "openRelationshipBrowser" [statyczny]
This constant specifies an event to open the relationship browser. | AssetFocusEvent | ||
EVENT_TYPE_FOCUS_GAIN : String = "gridItemFocusGain" [statyczny]
This constant denotes that the grid item has gained focus. | AssetFocusEvent | ||
EVENT_TYPE_FOCUS_LOST : String = "gridItemFocusLost" [statyczny]
This constant denotes that the grid item has lost focus. | AssetFocusEvent | ||
EVENT_TYPE_IDLE_STATE : String = "gridItemFocusIdleState" [statyczny]
This constant denotes that the grid item is in idle state. | AssetFocusEvent |
asset | właściwość |
eventType | właściwość |
eventType:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
The type of Asset Focus Event.
Implementacja
public function get eventType():String
focusX | właściwość |
focusY | właściwość |
AssetFocusEvent | () | Konstruktor |
public function AssetFocusEvent(asset:Object, focusX:int = 20, focusY:int = 20, eventType:String, type:String)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
Constructor
Parametryasset:Object — Specifies the of the action.
| |
focusX:int (default = 20 ) — Specifies the x-coordinates of the focus.
| |
focusY:int (default = 20 ) — Specifies the y-coordinates of the focus.
| |
eventType:String (default = NaN ) — Specifies the type of Asset Focus Event.
| |
type:String (default = NaN ) — Event Type
|
ACTION_ASSET_FOCUS_GAINED | Stała |
public static const ACTION_ASSET_FOCUS_GAINED:String = "assetFocusGained"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant specifies that the asset has gained focus.
ACTION_DEFAULT | Stała |
public static const ACTION_DEFAULT:String = "defaultAction"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant specifies the default action on the asset.
EVENT_ASSET_ACTION_FOCUS | Stała |
public static const EVENT_ASSET_ACTION_FOCUS:String = "assetFocusEvent"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant denotes that the event is the focus on the asset action.
EVENT_ASSET_ACTIONS_CHANGE | Stała |
public static const EVENT_ASSET_ACTIONS_CHANGE:String = "assetActionsChanged"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant denotes that the asset actions have been changed.
EVENT_LAUNCH_EDITOR_WINDOW | Stała |
public static const EVENT_LAUNCH_EDITOR_WINDOW:String = "launchEditor"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant denotes to launch the editor.
EVENT_OPEN_ACTIVATION_BROWSER | Stała |
public static const EVENT_OPEN_ACTIVATION_BROWSER:String = "openActivationBrowser"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant specifies an event to open the activation browser.
EVENT_OPEN_RELATIONSHIP_BROWSER | Stała |
public static const EVENT_OPEN_RELATIONSHIP_BROWSER:String = "openRelationshipBrowser"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant specifies an event to open the relationship browser.
EVENT_TYPE_FOCUS_GAIN | Stała |
public static const EVENT_TYPE_FOCUS_GAIN:String = "gridItemFocusGain"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant denotes that the grid item has gained focus.
EVENT_TYPE_FOCUS_LOST | Stała |
public static const EVENT_TYPE_FOCUS_LOST:String = "gridItemFocusLost"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant denotes that the grid item has lost focus.
EVENT_TYPE_IDLE_STATE | Stała |
public static const EVENT_TYPE_IDLE_STATE:String = "gridItemFocusIdleState"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Wersje środowiska wykonawczego: | Flash Player 10.2, AIR (unsupported) |
This constant denotes that the grid item is in idle state.
Tue Jun 12 2018, 12:06 PM Z