[Flashcoders] Custom combobox

2005-12-23 Thread Mike Boutin
Can anyone tell me how to go about creating a comobox that can hold a 10x10 pixel color palette image and a label beside it per row? Has anyone seen anything like this? Thanks! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Custom combobox

2005-12-23 Thread Chris Hill
Hi Mike, You should be able to create a movieclip class that implements the CellRenderer api, and then use that within the combobox's list: var dropdown:List = myCombo.dropdown; dropdown.cellRenderer = myCustomCellRenderer; Having said that, I've never done this, but I don't see why it

Re: [Flashcoders] Custom combobox

2005-12-23 Thread Mike Boutin
. - Original Message - From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, December 23, 2005 3:23 PM Subject: Re: [Flashcoders] Custom combobox Hi Chris, thanks for the help by the way, i managed to get it working like so