Event Flex



    
        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="200" y="200" width="80" />