fullScreenSourceRect Issue

Hello,

I tried the tutorial for the fullscreen mode in flash (http://labs.adobe.com/wiki/index.php/Flash_Player :9:Update:Full-Screen_Mode
_HW) everything works fine until I use the SourceRectangle to specify a part to go on fullscreen. when I use this all vector shapes
are pixelated even the little pop-up which says “press esc to exit fullscreen…” ??? Furthermore I can’t really specify a rectangle
whose registration point isn’t 0/0?

I’m using flash CS3 with AS2

Any suggestions?

++++++++++ Attach Code
function goFullScreen() { // when going out of full screen mode //we use these values theVideo.savedWidth = theVideo.width; theVideo.savedHeight = theVideo.height; theVideo.savedSmoothing = theVideo.smoothing; theVideo.savedDeblocking = theVideo.deblocking; // Set the size of the video object to the // original size of the video stream theVideo.width = theVideo.videoWidth; theVideo.height = theVideo.videoHeight; theVideo.smoothing = false; theVideo.deblocking = 0; var dackel = new Rectangle(theVideo.x, theVideo.y, theVideo.width, theVideo.height); Stage[“fullScreenSourceRect”] = dackel; Stage[“displayState”] = “fullScreen”; }