The new version of Flex Builder 2.0.1 seems to cause compatibility issues with 
Alex 
Uhlmann's DistortionEffects library. 

For anybody having issues with this, I have found a solution. The problem is on 
line 51 of 
Flip.as (com.adobe.ac.mxeffects.Flip).

It seems the TweenEffect class, which Flip extends, now uses IEffectInstance 
instead of 
EffectInstance. If you change the following function to accept an 
IEffectInstance and fix 
your import at the top of Flip.as, you should have a working version again.

Change this:

override protected function initInstance( instance : EffectInstance ) : void

To this:

override protected function initInstance( instance : IEffectInstance ) : void

And this:

import mx.effects.EffectInstance

To this:

import mx.effects.IEffectInstance

Cheers!

Brian


Reply via email to