Greetings FK,


I'm currently working on a project using FLVPlayback Components. I'm having this issue:

The user launches the page, the Component loads fine. They play the video and click the "FullScreen" button. The video launches nicely in fullscreen by using this code

Code:
stage.addEventListener(FullScreenEvent.FULL_SCREEN, resizeVideo);

function resizeVideo(e:FullScreenEvent):void{
    if(e.fullScreen){
        videoInstanceName.width = stage.stageWidth;
        videoInstanceName.width = stage.stageHeight;
    } else {
        videoInstanceName.scaleX = 1;
        videoInstanceName.scaleY = 1;
    }
}
When the user hits esc. or exits fullscreen, they come back to the movie and see that it has shrunk and moved over a few pixels. It doesnt move the entire SWF, just the component. I assume it has something to do with the "else" line. Let me know if you can be of some assistance. Linked please find my FLA and a link to the page where the issue occurs.

Live Page with issue
FLA


Thanks for your time,


chordmasta