For the row background, override drawRowBackground() and add a Loader (image) onto the Sprite that's passed to the method.
For highlight and selection, you'll have to draw the highlight and selection on the highlightIndicator and selectionIndicators (plural) properties. Check out ListBase.as. You don't have to worry about clearing these as they're cleared automatically. Just override drawHighlightIndicator() and drawSelectionIndicator() and draw on those specific objects (not on something of your own). On 4/26/07, blc187 <[EMAIL PROTECTED]> wrote: > maybe i could elaborate on this a little bit. > > instead of using an item renderer for the entire row, i chose to set > up renderers for the individual columns > this makes accessing the whole row a little tricky. > mainly i am trying to do 2 things: > > 1. load a bg into the row, trying to override drawRowBackground() > for this. though i am having a bit of trouble trying to figure out > what to attach the image to... > > 2. listen for events, rollovers and selections. > i have tried with drawHighlightIndicator() but it doesnt seem to > have a method to remove the previously highlighted row if i override > this. > > anyone have any experience trying to use a graphic for the row > backgrounds instead of just a color? > > > > > > > > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com > Yahoo! Groups Links > > > >

