# fullScreenSourceRect Issue

**URL:** https://forum.kirupa.com/t/fullscreensourcerect-issue/273331
**Category:** flash
**Created:** [October 14, 2008, 3:06pm UTC](https://forum.kirupa.com/t/fullscreensourcerect-issue/273331 "2008-10-14T15:06:39Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![laemmy](https://avatars.discourse-cdn.com/v4/letter/l/a183cd/32.png) [@laemmy](https://forum.kirupa.com/u/laemmy)
#### Post date: [October 14, 2008, 3:06pm UTC](https://forum.kirupa.com/t/fullscreensourcerect-issue/273331/1 "2008-10-14T15:06:39Z")

</div>

Hello,

I tried the tutorial for the fullscreen mode in flash ([http://labs.adobe.com/wiki/index.php/Flash\_Player](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”; }
