Fullscreen Mode

So I have a single swf which has a flvplayback with controls and at the bottom has a vertical playlist of videos.

I have the following code to toggle fullscreen views



controls_mc.fullscreen_mc.onRelease = function()
{
    if(Stage["displayState"] == "normal")
    {
        goFullScreen();
    }
    else
    {
        exitFullScreen();
    }

}

// enter full-screen mode
function goFullScreen()
{
   Stage["displayState"] = "fullScreen";
}

// leave full-screen mode
function exitFullScreen()
{
   Stage["displayState"] = "normal";
}


and it “works”, but the problem I’m having is that the playlist is showing in the fullscreen mode as well. What I’m trying to achieve is t only have the flvplayback and controls show up in the fullscreen.

Any help in this matter will be appreciated.