| Language Version : | ActionScript 3.0 |
| 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 var altKey:Boolean| Language Version : | ActionScript 3.0 |
| Runtime Versions : | Flash Player 9, AIR 1.1 |
Indicates whether the Alt key was pressed.
See also
flash.events.MouseEvent.altkey
public var buttonDown:Boolean| Language Version : | ActionScript 3.0 |
| 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
public var ctrlKey:Boolean| Language Version : | ActionScript 3.0 |
| Runtime Versions : | Flash Player 9, AIR 1.1 |
Indicates whether the Ctrl key was pressed.
See also
flash.events.MouseEvent.ctrlKey
public var shiftKey:Boolean| Language Version : | ActionScript 3.0 |
| Runtime Versions : | Flash Player 9, AIR 1.1 |
Indicates whether the Shift key was pressed.
See also
flash.events.MouseEvent.shiftKey
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 |
| 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).
|
public static function marshal(event:Event):SandboxMouseEvent| Language Version : | ActionScript 3.0 |
| 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.
|
Returnspublic static const CLICK_SOMEWHERE:String = clickSomewhere| Language Version : | ActionScript 3.0 |
| Runtime Versions : | Flash Player 9, AIR 1.1 |
Mouse was clicked somewhere outside your sandbox.
public static const DOUBLE_CLICK_SOMEWHERE:String = doubleClickSomewhere| Language Version : | ActionScript 3.0 |
| Runtime Versions : | Flash Player 9, AIR 1.1 |
Mouse was double-clicked somewhere outside your sandbox.
public static const MOUSE_DOWN_SOMEWHERE:String = mouseDownSomewhere| Language Version : | ActionScript 3.0 |
| Runtime Versions : | Flash Player 9, AIR 1.1 |
Mouse button was pressed down somewhere outside your sandbox.
public static const MOUSE_MOVE_SOMEWHERE:String = mouseMoveSomewhere| Language Version : | ActionScript 3.0 |
| Runtime Versions : | Flash Player 9, AIR 1.1 |
Mouse was moved somewhere outside your sandbox.
public static const MOUSE_UP_SOMEWHERE:String = mouseUpSomewhere| Language Version : | ActionScript 3.0 |
| Runtime Versions : | Flash Player 9, AIR 1.1 |
Mouse button was released somewhere outside your sandbox.
public static const MOUSE_WHEEL_SOMEWHERE:String = mouseWheelSomewhere| Language Version : | ActionScript 3.0 |
| Runtime Versions : | Flash Player 9, AIR 1.1 |
Mouse wheel was spun somewhere outside your sandbox.
Mon Dec 24 2012, 01:18 PM +11:00