onFullScreen not called

Hey,

I have a small problem.

The onFullscreen is not called when hitting ESC or pressing a exitFullScreen() or enterFullScreen() from a button (the button’s work like they should).


function alertBox(Title, Msg){
    alertbox.Title.text = Title;
    alertbox.Msg.text = Msg;
    alertbox._x = 298;
    alertbox._y = 200;
    alertbox._visible = true;
}
alertbox._visible = false;

function goFullScreen()
{
   Stage["displayState"] = "fullScreen";
}
function exitFullScreen()
{
   Stage["displayState"] = "normal";
}

EventListener.onFullScreen = function(bFull:Boolean){alertBox("Fullscreen","Is fallscreen = "+bFull);};
Stage.addListener( EventListener );

I have tried thing as a flash 8 or 9 project…

Any help would be much [SIZE=-1]appreciated[/SIZE]!

Thanks.