ili ispoljzovatj staryj iz Flash MX 2004 prototip dlja invertirovanija krasok: vot vykladyvaju...

Код:
MovieClip.prototype.setInvert = function (percent) {
c=new Color(this);
t=new Object;
t.ra=t.ga=t.ba=100-2*percent;
t.rb=t.gb=t.bb=percent*(255/100);
c.setTransform(t);
}
MovieClip.prototype.getInvert = function () {
c=new Color(this);
return c.getTransform().rb*(100/255);
}
MovieClip.prototype.addProperty ("_invert", getInvert, setInvert);