Pacote | mx.effects |
Classe | public class EffectManager |
Herança | EffectManager EventDispatcher Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
show
and move
events, dispatched by objects in a Flex application.
For each event, corresponding to an event trigger, it determines if
there is an effect assigned to the object.
If an effect is defined, it plays the effect.
Propriedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
[estático]
Immediately ends any effects currently playing on a target. | EffectManager | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
[estático]
Allows the EffectManager class to resume processing events
after a call to the suspendEventHandling() method. | EffectManager | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
[estático]
After this method is called, the EffectManager class ignores
all events, and no effects are triggered, until a call to
resumeEventHandling(). | EffectManager | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Eventos
Detalhes do método
endEffectsForTarget | () | método |
public static function endEffectsForTarget(target:IUIComponent):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Immediately ends any effects currently playing on a target.
Parâmetros
target:IUIComponent — The target component on which to end all effects.
|
resumeEventHandling | () | método |
public static function resumeEventHandling():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Allows the EffectManager class to resume processing events
after a call to the suspendEventHandling()
method.
Used internally in conjunction with the
suspendEventHandling()
method
so that an effect that is updating the screen
does not cause another effect to be triggered.
suspendEventHandling | () | método |
public static function suspendEventHandling():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
After this method is called, the EffectManager class ignores
all events, and no effects are triggered, until a call to
resumeEventHandling()
.
Used internally so that an effect that is updating the screen
does not cause another effect to be triggered.
Wed Jun 13 2018, 11:10 AM Z