I posted this over the weekend, but I am sure most people, including adobe, did not see it.

I saw that someone else had exactly the same problem in another thread and initially responded to that thread. The discussion about that bug quickly devolved into a critique of the persons programming style, and unless I missed something didnt resolve the issue of there being a bug.

I may be doing something wrong but I dont think so. My immediate issue is to find a work around. Since this is a really basic thing I would imagine that, if it is not a known issue (which is hard to imagine) that it will get some attention.

Below describes the problem, along with an mxml code example.

If you take the below text, drop it into an app, You should see four "hello" items in the list. If you move your mouse over the items, you should see that only the last item in the list of 4 "hello"s highlights, no matter where the mouse is. (at least hopefully you will see it... if not that would be*really* wierd)


<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" initialize="initList()">
        
        
     <mx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;

            [Bindable]
            private var selectedChannels:ArrayCollection = new ArrayCollection();
           
            private function initList():void{
                selectedChannels.addItem("hello");
                selectedChannels.addItem("hello");
                selectedChannels.addItem ("hello");
                selectedChannels.addItem("hello");
            }
        ]]>
    </mx:Script>

    <mx:List  dataProvider="{selectedChannels}" width="100"/>
</mx:Canvas>

__._,_.___

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





SPONSORED LINKS
Web site design development Computer software development Software design and development
Macromedia flex Software development best practice


YAHOO! GROUPS LINKS




__,_._,___

Reply via email to