HorizontalList 썸네일형 리스트형 Flex, TileList or HorizontalList 전체선택, 전체해제 // 모두 선택 해제 private function clickUnselectAll(obj:Object):void { var arrAll:Array = new Array(); obj.selectedIndices = arrAll; } // 모두 선택 private function clickSelectAll(obj:Object):void { var arrAll:Array = new Array(); var totalCount:int = obj.dataProvider.length; for (var i:int = 0; i < totalCount; ++i) { arrAll[i] = i; } obj.selectedIndices = arrAll; } 뭐 그닥 어려운건 아니지만 -_ ; selectedIndices 프로퍼.. 더보기 이전 1 다음