--- In [email protected], "pioplacz" <[EMAIL PROTECTED]> wrote:
>
> I have a question is it possible to disable the rollover color when u
move the mouse over
> some item within TileList. What i mean is that color "box" that shows
behind the item. Or is it
> possible to customise it?
>
You can create your own TileList control, simply create a new class and
extend TileList, then within that class override the mouseOverHandler
method and only put a return statement in it.
override protected function mouseOverHandler(event:MouseEvent):void
{
return;
}
You can use this override to restyle it the way you want as well. I'm
trying to figure out a way to resize an itemRenderer in a TileList
control on rollover, still no luck with it as the TileList seems to
aggressively hold the sizes of the ItemRenderers. If anyone has any
ideas, please let me know. Im basically trying to float the
itemRenderer above the rest and have it grow in width and height (not
zoom, I need extra space, not just a larger view of it). Thanks all,
John Shuell