Event Flex



    xmlns:mx="library://ns.adobe.com/flex/mx"
    xmlns:s="library://ns.adobe.com/flex/spark">
    
        
    

    
         
        public function runMove(dir:String, e:Event):void { 
            if (dir == "up") { 
                moveableButton.y = moveableButton.y - 5; 
            } else if (dir == "down") { 
                moveableButton.y = moveableButton.y + 5; 
            } else if (dir == "left") { 
                moveableButton.x = moveableButton.x - 5; 
            } else if (dir == "right") { 
                moveableButton.x = moveableButton.x + 5; 
            } 
        } 
      
    

    
                    label="{moveableButton.x.toString()},{moveableButton.y.toString()}"
            x="75" y="100" width="80" />
    
    
                    width="75" />