Tag Archive: actionscript 3

Apr
24

AS3 – Flex: TileList with ItemRenderer scrolling problem

When using wx:TileList with your own ItemRenderer, you have to remember two important things to avoid scrolling problems: If you override the set data method, remember to call super.data = value. Remember that the TileList reuses the ItemRenderer instances when scrolling the component! So, if you have a TileList with 5 rows and 5 cols, …

Continue reading »

Mar
05

AS3: write a simple undefined loader

I love to write my own visual classes in actionscript3. Some days ago I was searching for an undefined loader, like a rotating animated gif. But I thought that it would be great to have something wrote in as3 to do that, so I code it. I wrote a simple as3 class that shows some …

Continue reading »