Solved my issue, I had to use dataProvider not ArrayCollection as was shown in the ComboBox examples in the Developer's Guide.
<?xml version="1.0" encoding="utf-8"?> <mx:ComboBox xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script> <![CDATA[ [Bindable] public var status:String = ''; ]]> </mx:Script> <mx:dataProvider> <mx:String></mx:String> <mx:String>Reported</mx:String> <mx:String>Assigned</mx:String> <mx:String>Closed</mx:String> </mx:dataProvider> </mx:ComboBox> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us Archive: http://www.houseoffusion.com/groups/Flex/message.cfm/messageid:4405 Subscription: http://www.houseoffusion.com/groups/Flex/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37
