--- In [email protected], "tonyjobrien" <ya...@...> wrote:
>
> I'm trying to get the FadeIn effect to work on my List control, but
> I'm having no luck. The custom renderer stays white for the
> FadeInDuration and then appears instantly. If I switch back to using
> the default renderer, all is well. Also, if I have both a list with 
a
> custom renderer and the default at the same time, they both exhibit
> the same behaviour as the custom renderer. Here is a simple Flex app
> that shows the issue (comment out the lists as required).
> 
> FYI, I'm using Flex 3 on Windows XP with Firefox 3.

Try changing:

<mx:itemRenderer>
<mx:Component>
<mx:Canvas>
<mx:Label text="{data.label}"/>
</mx:Canvas>
</mx:Component>
</mx:itemRenderer>


to

<mx:itemRenderer>
<mx:Component>
<mx:Canvas>
<mx:Label text="{data.label}" blendMode="layer"/>
</mx:Canvas>
</mx:Component>
</mx:itemRenderer>

HTH;

Amy


Reply via email to