
MovieClip.onRollOver() Event Handler
This is the Title of the Book, eMatter Edition
Copyright © 2007 O’Reilly & Associates, Inc. All rights reserved.
Alphabetical Language Reference
|
689
MovieClip.onReleaseOutside() Event Handler
Button event; occurs when the mouse is pressed over the clip and then released off the clip
Flash 6
mc.onReleaseOutside()
on (releaseOutside) {
statements
}
Description
The onReleaseOutside() event handler is identical to the Button.onReleaseOutside() event,
except that it can also be applied to movie clip instances (though not main movies such as
_root, _level0, etc.).
See Also
Button.onReleaseOutside(); “Using Movie Clips as Buttons” in Chapter 13
MovieClip.onRollOut() Event Handler
Button event; occurs when the mouse pointer moves off of the clip while the mouse button is not depressed
Flash 6
mc.onRollOut()
on (rollOut) {
statements
}
Description
The onRollOut() event handler is identical to the Button.onRollOut() event, except that it
can also be applied to movie clip instances (though not main movies such as
_root, _level0,
etc.).
See Also
Button.onRollOut(); “Using Movie Clips as Buttons” in Chapter 13
MovieClip.onRollOver() Event Handler
Button event; occurs when the mouse pointer moves over the clip
Flash 6
mc.onRollOver()
on (rollOver) {
statements
}
Description
The onRollOver() event handler is identical to the Button.onRollOver() event, except that it
can also be applied to movie ...