![]() ![]() | |
Flash Player 7 (Windows only).
someListener.onMouseWheel = function ( [delta,scrollTarget]) {// your statements here}
delta An optional number indicating how many lines should be scrolled for each notch the user rolls the mouse wheel. A positive delta value indicates an upward scroll; a negative value indicates a downward scroll. Typical values are from 1 to 3, whereas faster scrolling may produce larger values.
If you don't want to specify a value for delta but want to specify a value for scrollTarget, pass null for delta.
scrollTarget The topmost movie clip instance under the mouse when the mouse wheel was scrolled.
Nothing.
Listener; notified when the user rolls the mouse wheel. To use the onMouseWheel listener, you must create a listener object. You can then define a function for onMouseWheel and use addListener() to register the listener with the Mouse object.
Note: Mouse wheel event listeners are available only on Windows versions of Flash Player.
The following example shows how to create a listener object that responds to mouse wheel events. In this example, the x coordinate of a movie clip object named clip_mc (not shown) is changed each time the user rolls the mouse wheel.
mouseListener = new Object();
mouseListener.onMouseWheel = function(delta) {
clip_mc._x += delta;
}
Mouse.addListener(mouseListener);
Mouse.addListener(), TextField.mouseWheelEnabled
![]() ![]() | |