Mouse.removeListener( ) Method | Flash 6 |
cancels event notices for the specified listener |
An object that was previously registered as a listener for Mouse.
A Boolean; true if listener was found and removed, false if listener was not registered as an event listener for Mouse. The return value is useful for debugging code that removes listeners.
The removeListener( ) method stops listener from receiving Mouse event notifications. It should only be used after listener has been registered as an event listener via addListener( ). The listener object is not deleted, but it can be removed and added repeatedly. Event listeners should be removed when the task they perform is no longer required.
Mouse.addListener( ), Mouse.onMouseDown( ), Mouse.onMouseMove( ), Mouse.onMouseUp( ); Chapter 10