After creating a onRelease handler in Actionscript 2 as follows:

1
myMovieClip.onRelease = function() { doWhatever(); }

..you then want to remove the handler for whatever reason, you can remove it like this:

1
delete myMovieClip.onRelease;