Mosessupposes tween blur help

Hi,
Im trying to use mosessupposes tweener and …

I tried putting some of the basic blur tansition code into my as code but it doesnt seem to be working with my code layout.

Right now I have a burnout code (this one is working)… like this

else if (transitionType = “burn”) {
var burn:Fuse = new Fuse();
burn.push( { target: target[instanceName].photoPanel, _brightOffset: 100, seconds: transitionTime * 0.5, ease: easeMethod } );
burn.push( { target: target[instanceName].photoPanel, _x: - xs[currentPhoto], seconds: 0, ease: easeMethod } );
burn.push( { target: target[instanceName].photoPanel, _brightOffset: 0, seconds: transitionTime * 0.5, ease: easeMethod } );
burn.start();
}

But I want it to blur out… using Blur_blur?
Does anyone know what im doing wrong.

Thanks,