Color change with AS

I found on kirupa a actionscript, and with that AS i can change a shape’s color:

This code:


on (press, release) {
    
    var colorful = new Color("_root.shapes");
    colorful.setRGB(0xFF0000);
}

Is it possible that it fades to the color?