Getting an FLV to play full screen. (As2)

I have a a flash site that has a flv video gallery in it. I created a button to make the flv go full screen using this code.

function goScaledFullScreen(){ 
   var screenRectangle:Rectangle = new Rectangle(); 
   screenRectangle.x = -103; 
   screenRectangle.y = -70; 
   screenRectangle.width= 480; 
   screenRectangle.height= 270;  
   Stage["fullScreenSourceRect"] = screenRectangle; 
   Stage["displayState"] = "fullScreen"; 
}  

It kind of works. It make the movie full screen but the control bar gets stretched and distorted as if they are rasterized. Is there away to fix this?