Add methods to a class in AS 2

hi everybody,
i would like to know if the following, for example,

MovieClip.prototype.beRed = function() {
new Color(this).setRGB(0xff0000);
};

is the right way to add methods to a class in Actionscript 2?

thanks