Multiple non-unique values in a List control seem to confuse it. Try selecting the second item in the List below:
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"> <mx:Script> [Bindable] public var listData:Array = ["alpha", "beta", "beta", "gamma", "delta"]; </mx:Script> <mx:List dataProvider="{listData}"/> </mx:Application> The selection consistently jumps to the second instance of "beta". What is happening? Is this expected behavior or a bug? ~Nolan

