Remove an onRelease Handler 2009-12-16 36 words - 1 min read 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;