Effects Flex


  horizontalScrollPolicy="off" verticalScrollPolicy="off">
  
  
    
      
      [Bindable]
      private var stageWidth:Number;
      [Bindable]
      private var stageHeight:Number;
      
      private function bounce():void
      {
        stageHeight = stage.height;
        stageWidth = stage.width;
        myObject.play();
      }
      
      private function replaceBall():void
      {
        myImage.x = 0;
        myImage.y = 0;
      }