Packagemx.events
Classpublic class SandboxMouseEvent
InheritanceSandboxMouseEvent Inheritance flash.events.Event

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

This is an event sent between applications in different security sandboxes to notify listeners about mouse activity in another security sandbox. For security reasons, some fields of a MouseEvent are not sent in a SandboxMouseEvent.



Public Properties
 PropertyDefined By
  altKey : Boolean
Indicates whether the Alt key was pressed.
SandboxMouseEvent
  buttonDown : Boolean
Indicates whether the primary mouse button is pressed (true) or not (false).
SandboxMouseEvent
  ctrlKey : Boolean
Indicates whether the Ctrl key was pressed.
SandboxMouseEvent
  shiftKey : Boolean
Indicates whether the Shift key was pressed.
SandboxMouseEvent
Public Methods
 MethodDefined By
  
SandboxMouseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, ctrlKey:Boolean = false, altKey:Boolean = false, shiftKey:Boolean = false, buttonDown:Boolean = false)
Constructor.
SandboxMouseEvent
  
[static] Marshal a SWFBridgeRequest from a remote ApplicationDomain into the current ApplicationDomain.
SandboxMouseEvent
Public Constants
 ConstantDefined By
  CLICK_SOMEWHERE : String = clickSomewhere
[static] Mouse was clicked somewhere outside your sandbox.
SandboxMouseEvent
  DOUBLE_CLICK_SOMEWHERE : String = doubleClickSomewhere
[static] Mouse was double-clicked somewhere outside your sandbox.
SandboxMouseEvent
  MOUSE_DOWN_SOMEWHERE : String = mouseDownSomewhere
[static] Mouse button was pressed down somewhere outside your sandbox.
SandboxMouseEvent
  MOUSE_MOVE_SOMEWHERE : String = mouseMoveSomewhere
[static] Mouse was moved somewhere outside your sandbox.
SandboxMouseEvent
  MOUSE_UP_SOMEWHERE : String = mouseUpSomewhere
[static] Mouse button was released somewhere outside your sandbox.
SandboxMouseEvent
  MOUSE_WHEEL_SOMEWHERE : String = mouseWheelSomewhere
[static] Mouse wheel was spun somewhere outside your sandbox.
SandboxMouseEvent
Property Detail
altKeyproperty
public var altKey:Boolean

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Indicates whether the Alt key was pressed.

See also

flash.events.MouseEvent.altkey
buttonDownproperty 
public var buttonDown:Boolean

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Indicates whether the primary mouse button is pressed (true) or not (false).

See also

flash.events.MouseEvent.buttonDown
ctrlKeyproperty 
public var ctrlKey:Boolean

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Indicates whether the Ctrl key was pressed.

See also

flash.events.MouseEvent.ctrlKey
shiftKeyproperty 
public var shiftKey:Boolean

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Indicates whether the Shift key was pressed.

See also

flash.events.MouseEvent.shiftKey
Constructor Detail
SandboxMouseEvent()Constructor
public function SandboxMouseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, ctrlKey:Boolean = false, altKey:Boolean = false, shiftKey:Boolean = false, buttonDown:Boolean = false)

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Constructor.

Parameters
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.
 
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).
Method Detail
marshal()method
public static function marshal(event:Event):SandboxMouseEvent

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Marshal a SWFBridgeRequest from a remote ApplicationDomain into the current ApplicationDomain.

Parameters

event:Event — A SWFBridgeRequest that might have been created in a different ApplicationDomain.

Returns
SandboxMouseEvent — A SandboxMouseEvent created in the caller's ApplicationDomain.
Constant Detail
CLICK_SOMEWHEREConstant
public static const CLICK_SOMEWHERE:String = clickSomewhere

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Mouse was clicked somewhere outside your sandbox.

DOUBLE_CLICK_SOMEWHEREConstant 
public static const DOUBLE_CLICK_SOMEWHERE:String = doubleClickSomewhere

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Mouse was double-clicked somewhere outside your sandbox.

MOUSE_DOWN_SOMEWHEREConstant 
public static const MOUSE_DOWN_SOMEWHERE:String = mouseDownSomewhere

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Mouse button was pressed down somewhere outside your sandbox.

MOUSE_MOVE_SOMEWHEREConstant 
public static const MOUSE_MOVE_SOMEWHERE:String = mouseMoveSomewhere

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Mouse was moved somewhere outside your sandbox.

MOUSE_UP_SOMEWHEREConstant 
public static const MOUSE_UP_SOMEWHERE:String = mouseUpSomewhere

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Mouse button was released somewhere outside your sandbox.

MOUSE_WHEEL_SOMEWHEREConstant 
public static const MOUSE_WHEEL_SOMEWHERE:String = mouseWheelSomewhere

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Mouse wheel was spun somewhere outside your sandbox.