Distort image

Hi,

i am using a 3d engine called sandy which has a distortimage class. Here is a basic example.

import sandy.util.DistortImage;
import flash.display.BitmapData;
var bmd:BitmapData = new BitmapData(photo._width, photo._height);
var clip:MovieClip = this.createEmptyMovieClip("holder", 1);
var di:DistortImage = new DistortImage(clip, bmd, 5, 5);
di.texture.draw(photo);
di.setTransform(25, 33, 80, 45, 67, 23, 9, 23);

I want to be able to tween the setTransform using the mx.transitions. Does anyone have an idea how to do this?

cheers,
G