Tint Color Doesnt work in Flash 8?

I am using this script but if I change he file to Flash 8 it stops working. Anybody know what they changed so that I can fix this?


var color = new Color(mc);
var transform = {rb:0, gb:0, bb:0};
onEnterFrame = function() {
	transform.rb += ((finalrb-transform.rb)/50);
	transform.gb += ((finalgb-transform.gb)/50);
	transform.bb += ((finalbb-transform.bb)/50);
	color.setTransform(transform);
}

Thanks,
Flash-matic