Methods inherited from class Object
addProperty (Object.addProperty
(Object.hasOwnProperty
(Object.isPropertyEnumerable
method),
registerClass (Object.registerClass
(Object.toString
(Object.valueOf
method),
addListener (Mouse.addListener method)
public static addListener(listener:Object) : Void
Registers an object to receive notifications of the
and
listeners. (The
onMouseWheel
The
parameter should contain an object that has a defined method for at least one
listener
of the listeners.
When the mouse is pressed, moved, released, or used to scroll, regardless of the input focus, all
listening objects that are registered with this method have their
, or
onMouseUp
onMouseWheel
notifications. If the
listener
Availability: ActionScript 1.0; Flash Player 6
Parameters
- An object.
listener:Object
Example
This example is excerpted from the animation.fla file in the ActionScript samples folder.
// Create a mouse listener object
var mouseListener:Object = new Object();
// Every time the mouse cursor moves within the SWF file,
update the position of the crosshair movie clip
instance on the Stage.
mouseListener.onMouseMove = function() {
crosshair_mc._x = _xmouse;
crosshair_mc._y = _ymouse;
};
// When you click the mouse, check to see if the cursor is within the
boundaries of the Stage. If so, increment the number of shots.
mouseListener.onMouseDown = function() {
if (bg_mc.hitTest(_xmouse, _ymouse, false)) {
method),
method),
isPropertyEnumerable
method),
method),
unwatch (Object.unwatch
watch (Object.watch method)
onMouseWheel
method invoked. Multiple objects can listen for mouse
is already registered, no change occurs.
hasOwnProperty
isPrototypeOf (Object.isPrototypeOf
method),
toString
method),
,
onMouseDown
onMouseMove
listener is supported only in Windows.)
onMouseDown
valueOf
,
,
onMouseUp
,
onMouseMove
Mouse
807
,
Need help?
Do you have a question about the FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE and is the answer not in the manual?