Referência do ActionScript® 3.0 para Adobe® Flash® Platform
Início  |  Ocultar listas de Pacotes e Classes |  Pacotes  |  Classes  |  Novidades  |  Índice  |  Apêndices  |  Por que inglês?
Filtros: AIR 30.0 e anterior, Flash Player 30.0 e anterior, Flash Lite 4
Flex 4.6 e anterior, Flash Pro CS6 e anterior
Ocultar filtros
mx.events 

FlexMouseEvent  - AS3 Flex

Pacotemx.events
Classepublic class FlexMouseEvent
HerançaFlexMouseEvent Inheritance MouseEvent Inheritance Event Inheritance Object

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

The FlexMouseEvent class represents the event object passed to the event listener for Flex-specific mouse activity.



Propriedades públicas
 PropriedadeDefinido por
 InheritedaltKey : Boolean
Indica se a tecla Alt está ativa (true) ou inativa (false).
MouseEvent
 Inheritedbubbles : Boolean
[somente leitura] Indica se um evento é do tipo bubbling.
Event
 InheritedbuttonDown : Boolean
Indica se o botão do mouse principal está pressionado (true) ou não (false).
MouseEvent
 Inheritedcancelable : Boolean
[somente leitura] Indica se o comportamento associado ao evento pode ser impedido.
Event
 InheritedclickCount : int
[somente leitura] Indica se o evento mouse down é parte ou não de uma sequência de vários cliques.
MouseEvent
 InheritedcommandKey : Boolean
Indica se a tecla Command está ativada (só no Mac). O valor da propriedade commandKey terá o mesmo valor que a propriedade ctrlKey no Mac.
MouseEvent
 Inheritedconstructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto.
Object
 InheritedcontrolKey : Boolean
Indica se a tecla Control está ativada no Mac e se a tecla Ctrl está ativada no Windows ou no Linux.
MouseEvent
 InheritedctrlKey : Boolean
No Windows ou no Linux, indica se a tecla Ctrl está ativa (true) ou inativa (false).
MouseEvent
 InheritedcurrentTarget : Object
[somente leitura] O objeto que está processando ativamente o objeto Event com um ouvinte de evento.
Event
 Inheriteddelta : int
Indica quantas linhas devem ser roladas para cada unidade em que o usuário gira a roda do mouse.
MouseEvent
 InheritedeventPhase : uint
[somente leitura] A fase atual no fluxo de eventos.
Event
 InheritedisRelatedObjectInaccessible : Boolean
Se verdadeiro, a propriedade relatedObject será definida como nula por motivos relacionados às caixas de proteção de segurança.
MouseEvent
 InheritedlocalX : Number
Quando o travamento de mouse está desativado, a coordenada horizontal na qual o evento ocorreu relacionada à entidade gráfica que contém.
MouseEvent
 InheritedlocalY : Number
Quando o travamento de mouse está desativado, a coordenada vertical na qual o evento ocorreu relacionada à entidade gráfica que contém.
MouseEvent
 InheritedmovementX : Number
Quando o travamento de mouse é ativado, a alteração na posição do mouse na direção X desde o último evento de mouse.
MouseEvent
 InheritedmovementY : Number
Quando o travamento de mouse é ativado, a alteração na posição do mouse na direção Y desde o último evento de mouse.
MouseEvent
 InheritedrelatedObject : InteractiveObject
Uma referência a um objeto de lista de exibição relacionado ao evento.
MouseEvent
 InheritedshiftKey : Boolean
Indica se a tecla Shift está ativa (true) ou inativa (false).
MouseEvent
 InheritedstageX : Number
[somente leitura] A coordenada horizontal na qual o evento ocorreu em coordenadas globais de Palco.
MouseEvent
 InheritedstageY : Number
[somente leitura] A coordenada vertical na qual o evento ocorreu em coordenadas globais de Palco.
MouseEvent
 Inheritedtarget : Object
[somente leitura] O destino de evento.
Event
 Inheritedtype : String
[somente leitura] O tipo de evento.
Event
Métodos públicos
 MétodoDefinido por
  
FlexMouseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, localX:Number = 0, localY:Number = 0, relatedObject:InteractiveObject = null, ctrlKey:Boolean = false, altKey:Boolean = false, shiftKey:Boolean = false, buttonDown:Boolean = false, delta:int = 0)
Constructor.
FlexMouseEvent
 Inherited
[substituir] Cria uma cópia do objeto MouseEvent e define o valor de cada propriedade para corresponder ao do original.
MouseEvent
 Inherited
formatToString(className:String, ... arguments):String
Uma função de utilitário para implementar o método toString() em classes ActionScript 3.0 Event personalizadas.
Event
 Inherited
Indica se um objeto tem uma propriedade especificada definida.
Object
 Inherited
Verifica se o método preventDefault() foi chamado no evento.
Event
 Inherited
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro.
Object
 Inherited
Cancela um comportamento padrão de evento se esse comportamento puder ser cancelado.
Event
 Inherited
Indica se a propriedade especificada existe e é enumerável.
Object
 Inherited
Define a disponibilidade de uma propriedade dinâmica para operações de repetição.
Object
 Inherited
Impede o processamento de qualquer ouvinte de evento no nó atual e qualquer nó subsequente no fluxo de eventos.
Event
 Inherited
Impede o processamento de algum ouvinte de evento em nós subsequentes ao nó atual no fluxo de eventos.
Event
 Inherited
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade.
Object
 Inherited
[substituir] Retorna uma string que contém todas as propriedades do objeto MouseEvent.
MouseEvent
 Inherited
Instrui o Flash Player ou Adobe AIR a aplicar acabamento após o término do processamento desse evento, se a lista de exibição tiver sido modificada.
MouseEvent
 Inherited
Retorna o valor primitivo do objeto especificado.
Object
Constantes públicas
 ConstanteDefinido por
  MOUSE_DOWN_OUTSIDE : String = "mouseDownOutside"
[estático] The FlexMouseEvent.MOUSE_DOWN_OUTSIDE constant defines the value of the type property of the event object for a mouseDownOutside event.
FlexMouseEvent
  MOUSE_WHEEL_CHANGING : String = "mouseWheelChanging"
[estático] The FlexMouseEvent.MOUSE_WHEEL_CHANGING constant defines the value of the type property of the event object for a mouseWheelChanging event.
FlexMouseEvent
  MOUSE_WHEEL_OUTSIDE : String = "mouseWheelOutside"
[estático] The FlexMouseEvent.MOUSE_WHEEL_OUTSIDE constant defines the value of the type property of the event object for a mouseWheelOutside event.
FlexMouseEvent
Detalhes do construtor

FlexMouseEvent

()Construtor
public function FlexMouseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, localX:Number = 0, localY:Number = 0, relatedObject:InteractiveObject = null, ctrlKey:Boolean = false, altKey:Boolean = false, shiftKey:Boolean = false, buttonDown:Boolean = false, delta:int = 0)

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

Constructor.

Parâmetros
type: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.
 
localX:Number (default = 0) — The horizontal position at which the event occurred.
 
localY:Number (default = 0) — The vertical position at which the event occurred.
 
relatedObject:InteractiveObject (default = null) — The display list object that is related to the event.
 
ctrlKey:Boolean (default = false) — Whether the Control key is down.
 
altKey:Boolean (default = false) — Whether the Alt key is down.
 
shiftKey:Boolean (default = false) — Whether the Shift key is down.
 
buttonDown:Boolean (default = false) — Whether the Control key is down.
 
delta:int (default = 0) — How many lines should be scrolled for each notch the user scrolls the mouse wheel.
Detalhes da constante

MOUSE_DOWN_OUTSIDE

Constante
public static const MOUSE_DOWN_OUTSIDE:String = "mouseDownOutside"

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

The FlexMouseEvent.MOUSE_DOWN_OUTSIDE constant defines the value of the type property of the event object for a mouseDownOutside event.

The properties of the event object have the following values:

PropertyValue
altKeyIndicates whether the Alt key is down (true) or not (false).
bubblesfalse
buttonDownIndicates whether the main mouse button is down (true) or not (false).
cancelablefalse
ctrlKeyIndicates whether the Control key is down (true) or not (false).
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget. For PopUpManager events, the object is the pop-up window.
deltaIndicates how many lines should be scrolled for each notch the user scrolls the mouse wheel. For PopUpManager events this value is 0.
localXThe horizontal position at which the event occurred. For PopUpManager events, the value is relative to the pop-up control.
localYThe vertical position at which the event occurred. For PopUpManager events, the value is relative to the pop-up control.
relatedObjectA reference to a display list object that is related to the event. For PopUpManager events, the object is the container over which the mouse pointer is located.
shiftKeyIndicates whether the Shift key is down (true) or not (false).
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event. For PopUpManager events, the object is the pop-up window.

MOUSE_WHEEL_CHANGING

Constante 
public static const MOUSE_WHEEL_CHANGING:String = "mouseWheelChanging"

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 4.5
Versões de runtime: Flash Player 10, AIR 2.5

The FlexMouseEvent.MOUSE_WHEEL_CHANGING constant defines the value of the type property of the event object for a mouseWheelChanging event.

The properties of the event object have the following values:

PropertyValue
altKeyIndicates whether the Alt key is down (true) or not (false).
bubblesfalse
buttonDownIndicates whether the main mouse button is down (true) or not (false).
cancelablefalse
ctrlKeyIndicates whether the Control key is down (true) or not (false).
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
deltaIndicates how many lines should be scrolled for each notch the user scrolls the mouse wheel.
localXThe horizontal position at which the event occurred.
localYThe vertical position at which the event occurred.
relatedObjectA reference to a display list object that is related to the event. For this event, the object is the component which is the target of the mouseWheel event.
shiftKeyIndicates whether the Shift key is down (true) or not (false).
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.

MOUSE_WHEEL_OUTSIDE

Constante 
public static const MOUSE_WHEEL_OUTSIDE:String = "mouseWheelOutside"

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

The FlexMouseEvent.MOUSE_WHEEL_OUTSIDE constant defines the value of the type property of the event object for a mouseWheelOutside event.

The properties of the event object have the following values:

PropertyValue
altKeyIndicates whether the Alt key is down (true) or not (false).
bubblesfalse
buttonDownIndicates whether the main mouse button is down (true) or not (false).
cancelablefalse
ctrlKeyIndicates whether the Control key is down (true) or not (false).
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget. For PopUpManager events, the object is the pop-up window.
deltaIndicates how many lines should be scrolled for each notch the user scrolls the mouse wheel. For PopUpManager events this value is 0.
localXThe horizontal position at which the event occurred. For PopUpManager events, the value is relative to the pop-up control.
localYThe vertical position at which the event occurred. For PopUpManager events, the value is relative to the pop-up control.
relatedObjectA reference to a display list object that is related to the event. For PopUpManager events, the object is the container over which the mouse pointer is located.
shiftKeyIndicates whether the Shift key is down (true) or not (false).
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event. For PopUpManager events, the object is the pop-up window.





[ X ]Por que inglês?
O conteúdo na Referência do ActionScript 3.0 aparece em inglês

Nem todas as partes da Referência do ActionScript 3.0 estão traduzidas em todos os idiomas. Quando um elemento de um idioma não está traduzido, ele é exibido em inglês. Por exemplo, a classe ga.controls.HelpBox não está traduzida em nenhum idioma. Por isso, na versão da referência em português do Brasil, a classe ga.controls.HelpBox é exibida em inglês.