Table of Contents

MovieClip.onReleaseOutside( ) Event Handler Flash 6

Button event; occurs when the mouse is pressed over the clip and then released off the clip
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( ); Section 13.9


Table of Contents