Mega Code Archive

 
Categories / Flex / Effects
 

List Effect Custom and Default Effects

<!-- Code from Flex 4 Documentation "Using Adobe Flex 4". This user guide is licensed for use under the terms of the Creative Commons Attribution  Non-Commercial 3.0 License.  This License allows users to copy, distribute, and transmit the user guide for noncommercial  purposes only so long as    (1) proper attribution to Adobe is given as the owner of the user guide; and    (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms.  The best way to provide notice is to include the following link.  To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ -->     <!-- dataEffects\ListEffectCustomDefaultEffect.mxml --> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"     xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark">     <s:layout>         <s:VerticalLayout />     </s:layout>     <fx:Script>                    import mx.effects.DefaultListEffect;          import mx.collections.ArrayCollection;          [Bindable]          private var myDP:ArrayCollection = new ArrayCollection(          ['A','B','C','D','E']);          private function deleteItem():void {              // As each item is removed, the index of the other items changes.              // So first get the items to delete, and then determine their indices              // as you remove them.              var toRemove:Array = [];              for (var i:int = 0; i < list0.selectedItems.length; i++)                  toRemove.push(list0.selectedItems[i]);              for (i = 0; i < toRemove.length; i++)                  myDP.removeItemAt(myDP.getItemIndex(toRemove[i]));          }              private var zcount:int = 0;          private function addItem():void {              // Always add the new item after the third item,              // or after the last item if the length is less than 3.              myDP.addItemAt("Z"+zcount++,Math.min(3,myDP.length));          }             </fx:Script>     <fx:Declarations>         <!--             Define an instance of the DefaultListEffect effect, and set its             fadeOutDuration and color properties.         -->         <mx:DefaultListEffect id="myDLE" fadeOutDuration="1000" />     </fx:Declarations>     <mx:List id="list0" width="150" dataProvider="{myDP}"         variableRowHeight="true" fontSize="24" allowMultipleSelection="true"         itemsChangeEffect="{myDLE}" />     <mx:Button label="Delete Item" click="deleteItem();" />     <mx:Button label="Add Item" click="addItem();" /> </s:Application>