Re: [Flashcoders] access individual items in combobox

2009-05-26 Thread Glen Pike
Hi, "Drawing" each item in a combobox drop-down or list is handled by a CellRenderer. Usually you write your own class that implements the correct interface and override your various functions to suit. Here's a couple of links that may help you start: http://www.rockabit.com/2008

Re: [Flashcoders] access individual items in combobox

2009-05-26 Thread Charles Parcell
This what you are looking for? myComboBox.getItemAt(1); Charles P. On Tue, May 26, 2009 at 10:51 AM, Mendelsohn, Michael < michael.mendels...@fmglobal.com> wrote: > Hi list... > > How do you access individual items in an AS3 component combobox? I can't > seem to pick through the combobox.drop

RE: [Flashcoders] access individual items in combobox

2009-05-26 Thread Cor
hattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Charles Parcell Sent: dinsdag 26 mei 2009 21:11 To: Flash Coders List Subject: Re: [Flashcoders] access individual items in combobox This what you are looking for? myComboBox.getItemAt(1); Charles P. On Tue, May

[Flashcoders] access individual items in combobox

2009-05-26 Thread Mendelsohn, Michael
Hi list... How do you access individual items in an AS3 component combobox? I can't seem to pick through the combobox.dropdown reference. I am trying to skin each of the items in the dropdown differently based on their values. Thanks, - Michael M.