I'm using a DataGrid to display user answers, and they are color-coded red and green to indicate right and wrong.

I want to completely disable the rollover and selection transitions. These should be static, non-selectable items.

To change the color of each item I'm using

   dataGrid.setPropertiesAt(i, {backgroundColor: red/green/white});

To prevent the rollover and selection transitions from appearing, I've tried setting the selectionColor and rollOverColor to the same values, but I'm still seeing a brief change to the default rollOverColor as I rollOver each row: dataGrid.setPropertiesAt(i, {selectionColor:red/green/white, rollOverColor:red/green/white});

I've tried setting useRollOver to false, but that seems to have no effect at all.

Thanks!
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to