The following custom component displays the "--select--" value but not 
the contents of the array collection.  What is my problem?


<?xml version="1.0" encoding="utf-8"?>
<mx:ComboBox width="100" rowCount="15" 
xmlns:mx="http://www.adobe.com/2006/mxml";
         prompt="--select--">
   <mx:ArrayCollection>
      <mx:Object label="12:00 AM" data="00"/>
      <mx:Object label="01:00 AM" data="01"/>
      <mx:Object label="10:00 PM" data="22"/>
      <mx:Object label="11:00 PM" data="23"/>
   </mx:ArrayCollection>
</mx:ComboBox>



Reply via email to