Panel mouse down effect : Panel Action « Container « Flex






Panel mouse down effect

Panel mouse down effect
        
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Resize id="myResize" heightTo="300" hideChildrenTargets="{[panelOne, panelTwo]}" />
    <mx:HBox>
        <mx:Panel id="panelOne" mouseDownEffect="{myResize}">
            <mx:Button />
        </mx:Panel>
        <mx:Panel id="panelTwo" mouseDownEffect="{myResize}">
            <mx:Button />
        </mx:Panel>
        <mx:Panel id="panelThree" mouseDownEffect="{myResize}">
            <mx:Button />
        </mx:Panel>
    </mx:HBox>
</mx:Application>

   
    
    
    
    
    
    
    
  








Related examples in the same category

1.Register an event handler for the Panel containerRegister an event handler for the Panel container
2.Panel drag and dropPanel drag and drop
3.logs the change event to flashlog.txt each time the user changes panelslogs the change event to flashlog.txt each time the user changes panels
4.Panel rollOver and rollOut eventsPanel rollOver and rollOut events