--- In [email protected], Gordon Smith <gosm...@...> wrote: > > 1. If accessing the ComboBoxes you'll create by an index number is > sufficient, declare an instance var of type Array: > > private var comboBoxes:Array = []; > > When you dynamically create a new ComboBox, simply add the reference onto the > end of this Array:
Or you can use a repeater, which automates this and will automatically handle destroying and recreating all the comboboxes if the data source they are based on changes.

