Enable smoothing on VideoDisplay

在FB 3中

package custom {  
   
    import mx.controls.VideoDisplay;
    import mx.core.mx_internal;
    import mx.events.FlexEvent;  
       
    use namespace mx_internal;  
      
    public class SmoothVideoDisplay extends VideoDisplay  
    {  
        public function SmoothVideoDisplay():void  
        {
            super();  
            addEventListener( FlexEvent.CREATION_COMPLETE, onCreationComplete );  
        }  
       
        private function onCreationComplete( e:FlexEvent):void  
        {  
            if (videoPlayer.smoothing != smoothing)  
            videoPlayer.smoothing = smoothing;  
        }  
          
        private var _smoothing:Boolean = false;
        
        [Bindable]  
        public function set smoothing( val:Boolean):void  
        {  
            if ( val == smoothing)  
            return;  
            _smoothing = val;  
               
            if (videoPlayer)  
            videoPlayer.smoothing = _smoothing;  
        }  
          
        public function get smoothing():Boolean  
        {  
            return _smoothing;  
        }
    
    }
}

转自:http://www.fitchett.me/index.php/development/adobe-flex-smooth-video-display-component/

猜你喜欢

转载自blog.csdn.net/cyyingsun/article/details/7924212