OT : Where did you download the 2.0.1 update? Searching for it at adobe, but no avail...
Ralph. On 1/5/07, klumikaze <[EMAIL PROTECTED]> wrote:
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
-- Ralph Hauwert FlashCoder

