Combo Box with Icons

I have a combobox that displays images(movieclips) in the dropdown part, but when you select one of the options. the icon/movieclip/image does not show up in the active area.

Any suggestions?


var cb:ComboBox = new ComboBox();
addChild(cb);
cb.x = 150;
cb.y = 10;
cb.height = 25;
cb.width = 130;

cb.addItem( { icon:new blue_mc()} );
cb.addItem( { icon:new yellow_mc()} );
cb.addItem( { icon:new green_mc()} );
cb.addItem( { icon:new red_mc()} );

the mc’s are linked in my library.

Thanks,