hi, sorry i'm not speaking english my flex application problem. tilelist cellRenderer is checkbox, checkbox check(select) click and scroll move to down. after scroll move to up. show the checkbox chek to uncheck. i'm not solve this problem. please help me thanks.
my_test.mxml <?xml version="1.0" encoding="euc-kr"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> <mx:Script> <![CDATA[ var dp = [ {check: "t"},{check: "f"},{check: "f"},{check: "t"}, {check: "f"},{check: "f"},{check: "t"},{check: "f"}, {check: "f"},{check: "f"},{check: "f"},{check: "f"}, {check: "f"},{check: "f"},{check: "f"},{check: "f"}, {check: "f"},{check: "f"},{check: "f"},{check: "f"}, {check: "f"},{check: "f"},{check: "f"},{check: "f"}, {check: "f"},{check: "f"},{check: "f"},{check: "f"}, {check: "f"},{check: "f"},{check: "f"},{check: "f"}, {check: "f"},{check: "f"},{check: "f"},{check: "f"}, {check: "f"},{check: "f"},{check: "f"},{check: "f"} ]; ]]> </mx:Script> <mx:VBox height="150" width="190"> <mx:TileList dataProvider="{dp}" width="180" height="100%" cellRenderer="tile_cb" itemWidth="50" itemHeight="20" selectable="false"/> </mx:VBox> </mx:Application> tile_cb.mxml <?xml version="1.0" encoding="utf-8"?> <mx:VBox xmlns:mx="http://www.macromedia.com/2003/mxml" horizontalAlign="center" verticalGap="0" borderStyle="none" creationPolicy="all"> <mx:Script> var planList: Object; function setValue(str: String, item: Object) { if( item.check == "t") { cbList.selected = true; } else { cbList.selected = false; } } </mx:Script> <mx:CheckBox id="cbList" label="null"/> </mx:VBox> ------------------------ Yahoo! Groups Sponsor --------------------~--> Get to your groups with one click. Know instantly when new email arrives http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM --------------------------------------------------------------------~-> -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

