I need to implement a custom cell renderer
in a project of mine, I have done some search on google but couldn't find what I need.
I need each cell
in the tile list
to display 2 icons with couple of labels
. I need a good example to start it.
If possible I need a way to design the template as a MovieClip
and pass it to the tilelist for rendering the cells.
create a file called MyRenderer.mxml,paste this:
in tile list, write this:
To build a custom cell renderer you need extend a class of choice from the available listClasses. ImageCell looks like a good start for your project.
You would:
Here's a very basic example:
A pretty good example for what you need is on this post. The custom cell provided there:
HTH