Пакет | com.adobe.icc.editors.events |
Класс | public class AssetEvent |
Наследование | AssetEvent FlexEvent Event Object |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Asset Composer Building Block 9.5 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
This event is dispatched by various asset domain classes to signify events related to operations being carried out on them. For example, the class LetterModel dispatches an event of this type when it is saved. The event can be leveraged to show certain cues on the UI accordingly.
Свойство | Определено | ||
---|---|---|---|
bubbles : Boolean [только для чтения]
Определяет, является ли событие событием восходящей цепочки. | Event | ||
cancelable : Boolean [только для чтения]
Указывает, можно ли предотвратить поведение, связанное с событием. | Event | ||
constructor : Object
Ссылка на объект класса или функцию конструктора для данного экземпляра объекта. | Object | ||
currentTarget : Object [только для чтения]
Объект, активно обрабатывающий объект Event с помощью прослушивателя событий. | Event | ||
eventPhase : uint [только для чтения]
Текущая фаза в потоке событий. | Event | ||
fault : Fault
The fault object encapsulating the error sent by the server. | AssetEvent | ||
target : Object [только для чтения]
Целевой объект события. | Event | ||
type : String [только для чтения]
Тип события. | Event |
Метод | Определено | ||
---|---|---|---|
Constructor. | AssetEvent | ||
Создает дубликат экземпляра подкласса Event. | Event | ||
Служебная функция для реализации метода toString() в пользовательских классах ActionScript 3.0 Event. | Event | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Проверяет, выполнялся ли для события вызова метода preventDefault(). | Event | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
Отменяет поведение по умолчанию для события, если такое поведение можно отменить. | Event | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Отменяет обработку прослушивателей событий в текущем узле, а также во всех узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Отменяет обработку прослушивателей событий в узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строку, содержащую все свойства объекта Event. | Event | ||
Возвращает элементарное значение заданного объекта. | Object |
Константа | Определено | ||
---|---|---|---|
SAVE_COMPLETE : String = "saveComplete" [статические]
The AssetEvent.SAVE_COMPLETE constant defines the value of the
type property of the event object for a saveComplete event. | AssetEvent | ||
SAVE_FAULT : String = "saveFault" [статические]
The AssetEvent.SAVE_FAULT constant defines the value of the
type property of the event object for a saveFault event. | AssetEvent | ||
SAVING : String = "saving" [статические]
The AssetEvent.SAVING constant defines the value of the
type property of the event object for a saving event. | AssetEvent |
fault | свойство |
public var fault:Fault
Язык версии: | ActionScript 3.0 |
Версия продукта: | Asset Composer Building Block 9.5 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The fault object encapsulating the error sent by the server. This property
is applicable only if the event type is saveFault
.
In case of other events, this property remains null and should be ignored.
AssetEvent | () | Конструктор |
public function AssetEvent(type:String, bubbles:Boolean = true, cancelable:Boolean = false, fault:Fault = null)
Язык версии: | ActionScript 3.0 |
Версия продукта: | Asset Composer Building Block 9.5 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
Constructor.
Параметрыtype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = true ) — 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.
| |
fault:Fault (default = null ) — The fault object related to the error sent by the server.
This is applicable only in case of the event type saveFault
|
SAVE_COMPLETE | Константа |
public static const SAVE_COMPLETE:String = "saveComplete"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Asset Composer Building Block 9.5 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The AssetEvent.SAVE_COMPLETE
constant defines the value of the
type
property of the event object for a saveComplete
event.
The saveComplete
event is dispatched when the domain object has been
successfully saved on the server. Unlike the saving
event, this is dispatched
in an aysnchronous manner only after the server has responded with a result for the save api
call.
This event can be used to stop UI animations indicating "save in progress" or to popup an info box indicating save success.
SAVE_FAULT | Константа |
public static const SAVE_FAULT:String = "saveFault"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Asset Composer Building Block 9.5 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The AssetEvent.SAVE_FAULT
constant defines the value of the
type
property of the event object for a saveFault
event.
The saveFault
event is dispatched when the server reports an error while
saving the asset on the server. Unlike the saving
event, this is dispatched
in an aysnchronous manner only after the server has responded with a result for the save api
call.
When this event is dispatched, the fault
property contains the fault object
encapsulating the error sent by the server. The fault
property can be used to
determine the faultCode and show an error message accordingly.
This event can be used to stop UI animations indicating "save in progress" or to popup an info box indicating save success.
SAVING | Константа |
public static const SAVING:String = "saving"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Asset Composer Building Block 9.5 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The AssetEvent.SAVING
constant defines the value of the
type
property of the event object for a saving
event.
The saving
event is dispatched when the save() method has been
called on the domain object. This event is dispatched before any server api
is invoked but after the domain client validations are complete. This is because
the actual save starts once the client validations are complete.
This event can be used to start a UI animation indicating "save in progress".
Связанные элементы API
Tue Jun 12 2018, 11:34 AM Z